summaryrefslogtreecommitdiffstats
path: root/nix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix.nix')
-rw-r--r--nix.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/nix.nix b/nix.nix
deleted file mode 100644
index b94cfc9..0000000
--- a/nix.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}: {
- nix = {
- gc = {
- automatic = true;
- dates = "daily";
- options = "--delete-older-than 3";
- };
- settings = {
- auto-optimise-store = true;
- experimental-features = ["nix-command" "flakes"];
- };
- };
-}