feat: distributed build

This commit is contained in:
Kat Inskip 2023-01-29 16:13:18 -08:00
parent 160be4bd90
commit dbc2627d6d
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
2 changed files with 38 additions and 19 deletions

View file

@ -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";
};
};
}