From 8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4 Mon Sep 17 00:00:00 2001 From: sils Date: Thu, 20 Apr 2023 18:25:45 +0200 Subject: Feat(structure): Restructured repository This is mainly convenience and my personal preference. --- common/nix/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 common/nix/default.nix (limited to 'common/nix') diff --git a/common/nix/default.nix b/common/nix/default.nix new file mode 100644 index 0000000..30f5b38 --- /dev/null +++ b/common/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