This commit is contained in:
Lilith 2024-06-11 00:17:07 +02:00
parent 6a9f4d40c8
commit 3f32cdd6ff
Signed by: lilith
GPG key ID: 8712A0F317C37175
2 changed files with 2 additions and 2 deletions

View file

@ -36,6 +36,7 @@ in {
conf.hardware-configuration
./full.nix
./boot.nix
home-manager.nixosModules.home-manager
({config, ...}: {

View file

@ -1,7 +1,6 @@
{lib, config, ...}: {
imports = [
./audio.nix
./boot.nix
./env.nix
./networking.nix
./persistence.nix
@ -18,7 +17,7 @@
./syncthing.nix
./wayland.nix
./zsh.nix
] ++ lib.optionals conf.gaming.enable [
] ++ lib.optionals config.gaming.enable [
./vr.nix
];
}