From 4eaf76cf1e0af9ec7a630320bb7d4956041dd03e Mon Sep 17 00:00:00 2001 From: sils Date: Thu, 4 May 2023 18:17:38 +0200 Subject: Structure(treewide): Use new structure with home-manager home-manager enables great possibilities and is part of simplifying the structure of my config. --- sys/nix/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sys/nix/default.nix (limited to 'sys/nix') diff --git a/sys/nix/default.nix b/sys/nix/default.nix new file mode 100644 index 0000000..30f5b38 --- /dev/null +++ b/sys/nix/default.nix @@ -0,0 +1,13 @@ +{...}: { + nix = { + gc = { + automatic = true; + dates = "daily"; + options = "--delete-older-than 3"; + }; + settings = { + auto-optimise-store = true; + experimental-features = ["nix-command" "flakes"]; + }; + }; +} -- cgit 1.4.1