From ce5fa4b77ff8cc1391005a15bfb8f510fd5aead8 Mon Sep 17 00:00:00 2001 From: Henri Dohmen Date: Thu, 14 Aug 2025 23:35:17 +0200 Subject: [PATCH] fix --- host/roam/default.nix | 32 ++++---------------------------- 1 file changed, 4 insertions(+), 28 deletions(-) diff --git a/host/roam/default.nix b/host/roam/default.nix index 703ddaa..ecc870c 100644 --- a/host/roam/default.nix +++ b/host/roam/default.nix @@ -21,34 +21,10 @@ _: { }; }; - nix = { - buildMachines = [ - { - hostName = "noravm"; - sshUser = "nixremote"; - system = "x86_64-linux"; - protocol = "ssh-ng"; - maxJobs = 10; - speedFactor = 2; - supportedFeatures = [ - "nixos-test" - "benchmark" - "big-parallel" - "kvm" - ]; - mandatoryFeatures = [ ]; - } - ]; - distributedBuilds = true; - extraOptions = '' - builders-use-substitutes = true - ''; - - gc = { - automatic = true; - dates = "weekly"; - options = "--delete-older-than 15d"; - }; + nix.gc = { + automatic = true; + dates = "weekly"; + options = "--delete-older-than 15d"; }; # ====== DON'T CHANGE ======