Fixed: Typo

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

View File

@ -8,6 +8,7 @@
imports = imports =
[ [
../../modules/system.nix ../../modules/system.nix
../../modules/nix-settings.nix
../../modules/vpn.nix ../../modules/vpn.nix
../../modules/fonts.nix ../../modules/fonts.nix
../../modules/firewall.nix ../../modules/firewall.nix

View File

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