summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/nix-common.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/modules/nix-common.nix b/modules/nix-common.nix
index 874e2d6..6e4d373 100644
--- a/modules/nix-common.nix
+++ b/modules/nix-common.nix
@@ -1,10 +1,5 @@
{ config, pkgs, ... }: {
- nixpkgs = {
- # texlive.combined.scheme-medium;
- config.allowUnfree = true;
- };
-
nix = {
settings = {
allowed-users = [ "@wheel" "@builders" "@video" ];
@@ -13,8 +8,8 @@
# Clean up old generations after 30 days
gc = {
- # automatic = true;
- # dates = "weekly";
+ automatic = true;
+ dates = "weekly";
options = "--delete-older-than 30d";
};