diff options
| author | Baitinq <[email protected]> | 2022-08-29 14:11:32 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-08-29 14:11:32 +0200 |
| commit | 4141d8aae838423b47004fdc51c3a41e6b2b9631 (patch) | |
| tree | aaddd79a55bc95e15c3d21b340c6970918654a50 | |
| parent | Implement non NixOS hosts support (diff) | |
| download | nixos-config-4141d8aae838423b47004fdc51c3a41e6b2b9631.tar.gz nixos-config-4141d8aae838423b47004fdc51c3a41e6b2b9631.tar.bz2 nixos-config-4141d8aae838423b47004fdc51c3a41e6b2b9631.zip | |
Nix cleanup
| -rw-r--r-- | hosts/default.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index 5ad2c85..e2ea6d4 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -38,7 +38,10 @@ let home-manager.useUserPackages = true; home-manager.extraSpecialArgs = extraArgs; home-manager.users.${user} = { - imports = [ ./home.nix ] ++ [ (import ./${ hostname }/home.nix) ]; + imports = [ + ./home.nix + ./${ hostname }/home.nix + ]; }; } ]; @@ -48,7 +51,10 @@ let { inherit pkgs; extraSpecialArgs = extraArgs; - modules = [ ./home.nix ] ++ [ (import ./${ hostname }/home.nix) ]; + modules = [ + ./home.nix + ./${ hostname }/home.nix + ]; }; in /* |