about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/aptos/default.nix9
-rw-r--r--hosts/carmel/default.nix10
-rw-r--r--hosts/tahoe/default.nix3
3 files changed, 4 insertions, 18 deletions
diff --git a/hosts/aptos/default.nix b/hosts/aptos/default.nix
index 7c51741..f92ce07 100644
--- a/hosts/aptos/default.nix
+++ b/hosts/aptos/default.nix
@@ -1,14 +1,7 @@
 { config, pkgs, hostname, ... }:
 
 {
-  imports = [
-    # Include the results of the hardware scan.
-    ./hardware.nix
-    ./sound.nix
-    ./networking.nix
-    ./home.nix
-    ./services.nix
-  ];
+  imports = [ ./hardware.nix ./sound.nix ./networking.nix ./services.nix ];
 
   # Allow setting GTK configuration using home-manager
   programs.dconf.enable = true;
diff --git a/hosts/carmel/default.nix b/hosts/carmel/default.nix
index 00ae881..8971397 100644
--- a/hosts/carmel/default.nix
+++ b/hosts/carmel/default.nix
@@ -1,14 +1,8 @@
 { config, pkgs, hostname, ... }:
 
 {
-  imports = [
-    ./hardware.nix
-    ./boot.nix
-    ./sound.nix
-    ./networking.nix
-    ./home.nix
-    ./services.nix
-  ];
+  imports =
+    [ ./hardware.nix ./boot.nix ./sound.nix ./networking.nix ./services.nix ];
 
   # Allow setting GTK configuration using home-manager
   programs.dconf.enable = true;
diff --git a/hosts/tahoe/default.nix b/hosts/tahoe/default.nix
index ceb6152..64377b8 100644
--- a/hosts/tahoe/default.nix
+++ b/hosts/tahoe/default.nix
@@ -1,8 +1,7 @@
 { config, pkgs, hostname, ... }:
 
 {
-  imports =
-    [ ./boot.nix ./hardware.nix ./networking.nix ./home.nix ./services.nix ];
+  imports = [ ./boot.nix ./hardware.nix ./networking.nix ./services.nix ];
 
   users.groups.nas.gid = 5000;
   users.users.nas = {