fix ssh-ng bug with hydra

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-04-17 01:31:45 -04:00 committed by Alice Huston
parent 2e1fd5319a
commit 0b5a269fe4

View File

@ -1,4 +1,9 @@
{ config, pkgs, ... }: {
lib,
config,
pkgs,
...
}:
let let
keygen = key: { keygen = key: {
"${key}" = { "${key}" = {
@ -54,6 +59,7 @@ in
systems = [ systems = [
"x86_64-linux" "x86_64-linux"
"aarch64-linux" "aarch64-linux"
"i686-linux"
]; ];
supportedFeatures = [ supportedFeatures = [
@ -64,7 +70,6 @@ in
]; ];
} }
]; ];
distributedBuilds = true;
}; };
hardware = { hardware = {
@ -160,6 +165,7 @@ in
notificationSender = "hydra@alicehuston.xyz"; notificationSender = "hydra@alicehuston.xyz";
gcRootsDir = "/ZFS/ZFS-primary/hydra"; gcRootsDir = "/ZFS/ZFS-primary/hydra";
useSubstitutes = true; useSubstitutes = true;
buildMachinesFiles = [ ];
minimumDiskFree = 50; minimumDiskFree = 50;
minimumDiskFreeEvaluator = 100; minimumDiskFreeEvaluator = 100;
}; };