diff options
| -rw-r--r-- | hosts/adam/configuration.nix | 3 | ||||
| -rw-r--r-- | hosts/lilith/configuration.nix | 4 | ||||
| -rw-r--r-- | modules/default.nix | 8 |
3 files changed, 5 insertions, 10 deletions
diff --git a/hosts/adam/configuration.nix b/hosts/adam/configuration.nix index 765181c..16bd81d 100644 --- a/hosts/adam/configuration.nix +++ b/hosts/adam/configuration.nix @@ -7,7 +7,8 @@ { imports = [ ./hardware-configuration.nix - ../../modules + ../../modules/desktop + ../../modules/programs ../../modules/system ../../modules/services ]; diff --git a/hosts/lilith/configuration.nix b/hosts/lilith/configuration.nix index 92f9d7f..a3c138f 100644 --- a/hosts/lilith/configuration.nix +++ b/hosts/lilith/configuration.nix @@ -7,7 +7,7 @@ { imports = [ - ../../modules + ../../modules/programs ]; users.users.${username}.home = "/Users/${username}"; @@ -91,5 +91,7 @@ }; }; + nix.enable = false; + system.stateVersion = 5; } diff --git a/modules/default.nix b/modules/default.nix deleted file mode 100644 index edc2869..0000000 --- a/modules/default.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ ... }: - -{ - imports = [ - ./desktop - ./programs - ]; -} |
