aboutsummaryrefslogtreecommitdiffstats
path: root/nix.nix
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-01-08 19:30:04 +0100
committersils <sils@sils.li>2023-01-08 19:30:04 +0100
commite70b7da28c7590a594ab209e959a5bc135e61811 (patch)
tree26eb976e5b08f0e27c0efb785c3647e49d177d82 /nix.nix
parentswitch away from temp-root (diff)
downloadnix-config-e70b7da28c7590a594ab209e959a5bc135e61811.zip
introduce alejandra
Diffstat (limited to 'nix.nix')
-rw-r--r--nix.nix22
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;
+ };
}