diff options
author | ene <ene@sils.li> | 2023-02-04 11:54:55 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-04 11:55:56 +0100 |
commit | 75b442acb64bac70294681ae6d318a470afeac3c (patch) | |
tree | f05216df9e251e826188d4e8bfa6024af14078a4 /system/system.nix | |
parent | Fix(packages): Removed already by nixos managed ones (diff) | |
download | nixos-config-75b442acb64bac70294681ae6d318a470afeac3c.tar.gz nixos-config-75b442acb64bac70294681ae6d318a470afeac3c.zip |
Feat: Made more configuration host independent
Diffstat (limited to '')
-rw-r--r-- | system/system.nix | 6 |
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 ]; } |