me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

split home manager config

author
Sean Aye
date (Aug 30, 2025, 9:44 PM -0400) commit 97605532 parent 0f847732 change-id usyyvusq
+19 -3
+2 -2
flake.nix
··· 51 51 home-manager.nixosModules.home-manager 52 52 { 53 53 home-manager.extraSpecialArgs = { inherit inputs; }; 54 - home-manager.users.sean = import ./home.nix; 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 - home-manager.users.sean = import ./home.nix; 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
··· 1 - # This is the configuration for your user 'sean' 2 1 { pkgs, inputs, ... }: 3 2 4 3 {
+7
hosts/framework16/home.nix
··· 1 + { ... }: 2 + 3 + { 4 + imports = [ 5 + ../common/home.nix 6 + ]; 7 + }
+10
hosts/mira/home.nix
··· 1 + { ... }: 2 + 3 + { 4 + imports = [ 5 + ../common/home.nix 6 + ]; 7 + 8 + services.home-assistant.enable = true; 9 + 10 + }
waybar/config.jsonc hosts/common/waybar/config.jsonc
waybar/style.css hosts/common/waybar/style.css