This commit is contained in:
Lilith 2024-06-11 00:12:54 +02:00
parent 67aa9ec0ea
commit 6a9f4d40c8
Signed by: lilith
GPG key ID: 8712A0F317C37175
10 changed files with 60 additions and 26 deletions

24
system/full.nix Normal file
View file

@ -0,0 +1,24 @@
{lib, config, ...}: {
imports = [
./audio.nix
./boot.nix
./env.nix
./networking.nix
./persistence.nix
./bluetooth.nix
./btrfs.nix
./fonts.nix
./nix.nix
./nfs.nix
./users.nix
./sops.nix
./ssh.nix
./steam.nix
./stylix.nix
./syncthing.nix
./wayland.nix
./zsh.nix
] ++ lib.optionals conf.gaming.enable [
./vr.nix
];
}