diff options
author | ene <ene@sils.li> | 2023-02-05 13:00:04 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-05 13:00:04 +0100 |
commit | 47a69f76ec6241ac7c933dfba49455b3d364a6eb (patch) | |
tree | 09215dcf8a01980090c08ed9ad86171d52f800a7 /system/default.nix | |
parent | Fix: This fixes the booting process somehow? (diff) | |
download | nixos-config-47a69f76ec6241ac7c933dfba49455b3d364a6eb.tar.gz nixos-config-47a69f76ec6241ac7c933dfba49455b3d364a6eb.zip |
Feat: Switch to Default.nix files
This make the imported path somewhat shorter.
Diffstat (limited to 'system/default.nix')
-rw-r--r-- | system/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/system/default.nix b/system/default.nix new file mode 100644 index 00000000..17e78968 --- /dev/null +++ b/system/default.nix @@ -0,0 +1,10 @@ +{config, ...}: { + imports = [ + ./boot/boot.nix + ./filesystemLayouts/filesystemLayouts.nix + ./locale/locale.nix + ./packages/packages.nix + ./sound/sound.nix + ./users/users.nix + ]; +} |