about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-08-29 14:11:32 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-08-29 14:11:32 +0200
commit57090d390524e14c0c78e789cb7b3992884d8004 (patch)
treea9525ebdccb749fad7fe772a2024ce479a66d86e /hosts
parentImplement non NixOS hosts support (diff)
downloadnixos-config-57090d390524e14c0c78e789cb7b3992884d8004.tar.gz
nixos-config-57090d390524e14c0c78e789cb7b3992884d8004.tar.bz2
nixos-config-57090d390524e14c0c78e789cb7b3992884d8004.zip
Nix cleanup
Diffstat (limited to 'hosts')
-rw-r--r--hosts/default.nix10
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
   /*