diff options
-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 /* |