about summary refs log tree commit diff stats
path: root/system/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/default.nix')
-rw-r--r--system/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/system/default.nix b/system/default.nix
deleted file mode 100644
index 5faa402d..00000000
--- a/system/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{lib, ...}: {
-  imports = [
-    ./boot
-    ./disks
-    ./font
-    ./hardware
-    ./impermanence
-    ./libvirtd
-    ./locale
-    ./network
-    #./nixpkgs already at flake level imported
-    ./options
-    ./polkit
-    ./power
-    ./services
-    ./secrets
-    ./sound
-    ./tempfiles
-    ./users # the position of this item is fully arbitrary
-  ];
-  # remove all the bloat, which nixos installs by default
-  environment = {
-    defaultPackages = lib.mkForce [];
-  };
-}