diff options
author | sils <sils@sils.li> | 2023-01-08 19:30:04 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2023-01-08 19:30:04 +0100 |
commit | e70b7da28c7590a594ab209e959a5bc135e61811 (patch) | |
tree | 26eb976e5b08f0e27c0efb785c3647e49d177d82 /nix.nix | |
parent | switch away from temp-root (diff) | |
download | nix-config-e70b7da28c7590a594ab209e959a5bc135e61811.tar.gz nix-config-e70b7da28c7590a594ab209e959a5bc135e61811.zip |
introduce alejandra
Diffstat (limited to 'nix.nix')
-rw-r--r-- | nix.nix | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/nix.nix b/nix.nix index 02fa333..da21492 100644 --- a/nix.nix +++ b/nix.nix @@ -1,11 +1,15 @@ -{ config, lib, pkgs, ... }: { - nix = { - gc = { - automatic = true; - dates = "daily"; - options = "--delete-older-than 3"; - }; - settings.auto-optimise-store = true; - }; + config, + lib, + pkgs, + ... +}: { + nix = { + gc = { + automatic = true; + dates = "daily"; + options = "--delete-older-than 3"; + }; + settings.auto-optimise-store = true; + }; } |