From 3f32cdd6ff769702b98a6b935ccd8699e6a49d34 Mon Sep 17 00:00:00 2001 From: Lilith Date: Tue, 11 Jun 2024 00:17:07 +0200 Subject: [PATCH] refactor --- system/default.nix | 1 + system/full.nix | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/system/default.nix b/system/default.nix index 66bcb464..a1418012 100644 --- a/system/default.nix +++ b/system/default.nix @@ -36,6 +36,7 @@ in { conf.hardware-configuration ./full.nix + ./boot.nix home-manager.nixosModules.home-manager ({config, ...}: { diff --git a/system/full.nix b/system/full.nix index da1122b5..8d2fb779 100644 --- a/system/full.nix +++ b/system/full.nix @@ -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 ]; }