From 8ff29ec659a7ad3f9e417d2ca143de96621d3f54 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Mon, 19 May 2025 12:02:36 +0200 Subject: [PATCH] feat(ymir): enable weekly nix-store optimisation. --- hosts/ymir/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/ymir/configuration.nix b/hosts/ymir/configuration.nix index fab8784..0add432 100644 --- a/hosts/ymir/configuration.nix +++ b/hosts/ymir/configuration.nix @@ -119,6 +119,12 @@ # Allow unfree packages nixpkgs.config.allowUnfree = true; + # Optimise storage + nix.optimise = { + automatic = true; + dates = ["weekly"]; + }; + # Enable my flake specific settings crony.nvidia.enable = true; crony.gaming.enable = true;