mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: distributed build
This commit is contained in:
parent
160be4bd90
commit
dbc2627d6d
2 changed files with 38 additions and 19 deletions
|
|
@ -6,9 +6,16 @@ in {
|
|||
systemd-boot.configurationLimit = 8;
|
||||
};
|
||||
|
||||
nix.gc = {
|
||||
automatic = mkDefault false;
|
||||
dates = mkDefault "weekly";
|
||||
options = mkDefault "--delete-older-than 7d";
|
||||
nix = {
|
||||
settings = {
|
||||
trusted-users = [
|
||||
"deploy"
|
||||
];
|
||||
};
|
||||
gc = {
|
||||
automatic = mkDefault false;
|
||||
dates = mkDefault "weekly";
|
||||
options = mkDefault "--delete-older-than 7d";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue