diff options
author | ene <ene@sils.li> | 2023-02-11 12:07:32 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-11 12:10:44 +0100 |
commit | f7634949fa4e744cd5a930505ac4e9b4f81dc530 (patch) | |
tree | 7a290ad625f47430d40facaceb4f5c0706058eb8 /system/default.nix | |
parent | Feat(home-manager): Add firefox config (diff) | |
download | nixos-config-f7634949fa4e744cd5a930505ac4e9b4f81dc530.tar.gz nixos-config-f7634949fa4e744cd5a930505ac4e9b4f81dc530.zip |
Feat: Switch to default.nix
Diffstat (limited to 'system/default.nix')
-rw-r--r-- | system/default.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/system/default.nix b/system/default.nix index 17e78968..81949ce4 100644 --- a/system/default.nix +++ b/system/default.nix @@ -1,10 +1,10 @@ {config, ...}: { imports = [ - ./boot/boot.nix - ./filesystemLayouts/filesystemLayouts.nix - ./locale/locale.nix - ./packages/packages.nix - ./sound/sound.nix - ./users/users.nix + ./boot + ./users # this needs to be before fileSystemLayouts + ./fileSystemLayouts + ./locale + ./packages + ./sound ]; } |