summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-08-30 23:40:10 +0200
committerDevin Finlinson <devin.finlinson@pm.me>2023-08-30 23:40:10 +0200
commit06f52643745f49c9359b597f09db35df7f47791e (patch)
tree1683d60f80746ba2a49aadb6a5c5f83cafe10267 /modules
parentb543fe9a7714686c7c8e2ff35895de6fa558be53 (diff)
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";
};