From f22a20b08c4709811783a34e1ec29026c3e0181f Mon Sep 17 00:00:00 2001 From: Schrottkatze Date: Sun, 28 Jul 2024 20:53:38 +0200 Subject: [PATCH] add some programs and set up nix auto gc --- common.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/common.nix b/common.nix index dafa9d7..3f8212e 100644 --- a/common.nix +++ b/common.nix @@ -45,6 +45,8 @@ with builtins; { htmlq + prusa-slicer + zed-editor wget git neofetch @@ -158,4 +160,10 @@ with builtins; { }; users.defaultUserShell = pkgs.nushell; + + nix.gc = { + automatic = true; + dates = "weekly"; + options = "--delete-older-than 60d"; + }; }