Fixed: Typo

This commit is contained in:
2025-04-03 13:02:31 +02:00
parent ca026aead8
commit 6bc08fca07
2 changed files with 3 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, username, ... }:
{ pkgs, username, lib, ... }:
{
# given the users in this list the right to specify additional substituters via:
# 1. `nixConfig.substituers` in `flake.nix`
@@ -25,7 +25,7 @@
# do garbage collection weekly to keep disk usage low
nix.gc = {
automatic = lib.mkDefault true;
dates = lib.mkDefault "1h";
dates = lib.mkDefault "1 h";
options = lib.mkDefault "--delete-older-than +3";
};