alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
split home manager config
author
Sean Aye
date
9 months ago
(Aug 30, 2025, 9:44 PM -0400)
commit
97605532
9760553205af226e2ee8dcee80e11b719b0dd99e
parent
0f847732
0f847732c737579777bff2f7dcd863813cd9ba1f
change-id
usyyvusq
usyyvusqvzrykoomummxxsmoqkqtqpnv
+19
-3
6 changed files
Expand all
Collapse all
Unified
Split
flake.nix
hosts
common
home.nix
waybar
config.jsonc
style.css
framework16
home.nix
mira
home.nix
+2
-2
flake.nix
Reviewed
···
51
51
home-manager.nixosModules.home-manager
52
52
{
53
53
home-manager.extraSpecialArgs = { inherit inputs; };
54
54
-
home-manager.users.sean = import ./home.nix;
54
54
+
home-manager.users.sean = import ./hosts/mira/home.nix;
55
55
}
56
56
];
57
57
specialArgs = { inherit inputs; };
···
71
71
home-manager.nixosModules.home-manager
72
72
{
73
73
home-manager.extraSpecialArgs = { inherit inputs; };
74
74
-
home-manager.users.sean = import ./home.nix;
74
74
+
home-manager.users.sean = import ./hosts/framework16/home.nix;
75
75
}
76
76
];
77
77
specialArgs = { inherit inputs; };
-1
home.nix
hosts/common/home.nix
Reviewed
···
1
1
-
# This is the configuration for your user 'sean'
2
1
{ pkgs, inputs, ... }:
3
2
4
3
{
+7
hosts/framework16/home.nix
Reviewed
···
1
1
+
{ ... }:
2
2
+
3
3
+
{
4
4
+
imports = [
5
5
+
../common/home.nix
6
6
+
];
7
7
+
}
+10
hosts/mira/home.nix
Reviewed
···
1
1
+
{ ... }:
2
2
+
3
3
+
{
4
4
+
imports = [
5
5
+
../common/home.nix
6
6
+
];
7
7
+
8
8
+
services.home-assistant.enable = true;
9
9
+
10
10
+
}
waybar/config.jsonc
hosts/common/waybar/config.jsonc
Reviewed
waybar/style.css
hosts/common/waybar/style.css
Reviewed