From 4ced04a69cdc85c03d5e63321a5801a8ede10dea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Sun, 23 Mar 2025 02:48:31 +0100 Subject: [PATCH] System Gen156 @ 2025-03-23-02:48:31 --- hosts/comfy-station/configuration.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/hosts/comfy-station/configuration.nix b/hosts/comfy-station/configuration.nix index 6c2e591..3ccce96 100644 --- a/hosts/comfy-station/configuration.nix +++ b/hosts/comfy-station/configuration.nix @@ -2,7 +2,6 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). { - config, pkgs, inputs, ... @@ -25,7 +24,17 @@ desktop.de.plasma.enable = false; desktop.de.hyprland.enable = true; - nix.settings.experimental-features = ["nix-command" "flakes"]; + nix = { + settings = { + experimental-features = ["nix-command" "flakes"]; + auto-optimise-store = true; + }; + gc = { + automatic = true; + dates = "weekly"; + options = "--delete-older-than 30d"; + }; + }; # Enable touchpad support (enabled default in most desktopManager). # services.xserver.libinput.enable = true;