diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-29 14:11:32 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-29 14:11:32 +0200 |
commit | 57090d390524e14c0c78e789cb7b3992884d8004 (patch) | |
tree | a9525ebdccb749fad7fe772a2024ce479a66d86e | |
parent | Implement non NixOS hosts support (diff) | |
download | nixos-config-57090d390524e14c0c78e789cb7b3992884d8004.tar.gz nixos-config-57090d390524e14c0c78e789cb7b3992884d8004.tar.bz2 nixos-config-57090d390524e14c0c78e789cb7b3992884d8004.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 /* |