Move Darwin-specific gc.interval to Darwin profile

Remove Darwin-specific gc.interval from base profile and add it to Darwin profile to fix NixOS compatibility.

🤖 Generated with [opencode](https://opencode.ai)

Co-Authored-By: opencode <noreply@opencode.ai>
This commit is contained in:
Christoph Schmatzler
2025-08-11 11:58:52 +02:00
parent e4b491d23d
commit f11b894c95
2 changed files with 7 additions and 5 deletions

View File

@@ -44,11 +44,6 @@
};
gc = {
automatic = true;
interval = {
Weekday = 0;
Hour = 2;
Minute = 0;
};
options = "--delete-older-than 30d";
};
extraOptions = ''

View File

@@ -14,6 +14,13 @@
./dock
];
# Darwin-specific gc interval format
nix.gc.interval = {
Weekday = 0;
Hour = 2;
Minute = 0;
};
users.users.${user} = {
name = "${user}";
home = "/Users/${user}";