update gpdpocke3

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-12-17 02:40:50 -06:00
parent 0663c9b414
commit 8e3fe8b8db
3 changed files with 47 additions and 48 deletions

View file

@ -48,6 +48,7 @@ in
];
};
# rate limiting for github
nix.extraOptions = ''
keep-outputs = true
@ -64,6 +65,34 @@ in
flake = "/home/${settings.user.username}/.config/nixos-config";
};
# Remote build off home lio computer
programs.ssh.extraConfig = ''
Host lio_
PubkeyAcceptedKeyTypes ssh-ed25519
ServerAliveInterval 60
IPQoS throughput
IdentityFile ${config.age.secrets.nix2lio.path}
'';
nix = {
distributedBuilds = true;
buildMachines = [
{
hostName = "lio_";
system = "x86_64-linux";
protocol = "ssh-ng";
maxJobs = 32;
supportedFeatures = [
"nixos-test"
"benchmark"
"big-parallel"
"kvm"
"uid-range" # Often helpful
];
mandatoryFeatures = [ ];
}
];
};
# TODO do I want this dynamic at all? Roaming?
time.timeZone = "America/Chicago";
# Select internationalization properties.