diff --git a/modules/system/default.nix b/modules/system/default.nix index 6bed239..2692205 100644 --- a/modules/system/default.nix +++ b/modules/system/default.nix @@ -7,9 +7,8 @@ ./audio.nix ./docker.nix ./fonts.nix - ./virt.nix ./gnome - # ./niri + ./niri ]; # Allow packages from nixpkgs @@ -22,7 +21,7 @@ gc = { automatic = true; dates = "weekly"; - options = "--delete-older-than 30d"; + options = "--delete-older-than 1w"; }; settings.auto-optimise-store = true; }; diff --git a/modules/system/virt.nix b/modules/system/virt.nix deleted file mode 100644 index 3542d32..0000000 --- a/modules/system/virt.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ ... }: { - virtualisation.libvirtd.enable = true; - programs.virt-manager.enable = true; - users.users.twoneis.extraGroups = [ "libvirtd" ]; -}