about summary refs log tree commit diff stats
path: root/system/system.nix
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-04 11:54:55 +0100
committerene <ene@sils.li>2023-02-04 11:55:56 +0100
commit75b442acb64bac70294681ae6d318a470afeac3c (patch)
treef05216df9e251e826188d4e8bfa6024af14078a4 /system/system.nix
parentFix(packages): Removed already by nixos managed ones (diff)
downloadnixos-config-75b442acb64bac70294681ae6d318a470afeac3c.tar.gz
nixos-config-75b442acb64bac70294681ae6d318a470afeac3c.zip
Feat: Made more configuration host independent
Diffstat (limited to '')
-rw-r--r--system/system.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/system/system.nix b/system/system.nix
index 3a034742..17e78968 100644
--- a/system/system.nix
+++ b/system/system.nix
@@ -1,8 +1,10 @@
 {config, ...}: {
   imports = [
+    ./boot/boot.nix
+    ./filesystemLayouts/filesystemLayouts.nix
     ./locale/locale.nix
-    ./users/users.nix
-    ./sound/sound.nix
     ./packages/packages.nix
+    ./sound/sound.nix
+    ./users/users.nix
   ];
 }