linde: remove old direnv roots
3 files changed, 10 insertions(+), 0 deletions(-)
M flake.nix → flake.nix
@@ -108,6 +108,7 @@ specialArgs = { inherit inputs; }; modules = [ { nixpkgs.overlays = (readOverlays ./overlays) ++ [ + angrr.overlays.default nur.overlays.default elgit.overlays.default searchix.overlays.default@@ -116,6 +117,7 @@ } srvos.nixosModules.server srvos.nixosModules.hardware-hetzner-cloud-arm agenix.nixosModules.default + angrr.nixosModules.angrr elgit.nixosModules.elgit mycal.nixosModules.mycal searchix.nixosModules.web
M system/settings/configuration/nix-linux.nix → system/settings/configuration/nix-linux.nix
@@ -16,6 +16,8 @@ }; nixpkgs.config.allowUnfree = true; + services.angrr.enableNixGcIntegration = true; + system.autoUpgrade = { enable = true; };
M system/settings/configuration/nix.nix → system/settings/configuration/nix.nix
@@ -44,4 +44,10 @@ path = pkgs.path; }; }; }; + + services.angrr = { + enable = true; + period = "30d"; + ownedOnly = false; + }; }