summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2022-01-31 13:52:12 -0500
committerBen Sima <ben@bsima.me>2022-01-31 13:52:12 -0500
commita3be270668ae5780f3ef0437b088870ebbf8e011 (patch)
tree4a1f9003e977e53bb6e4c02770c888019e231593 /machines
parent41b9eaf6eb8a3ddbd4df757f197c8ab77e3d37d7 (diff)
fix helium build
Diffstat (limited to 'machines')
-rw-r--r--machines/helium.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/machines/helium.nix b/machines/helium.nix
index 1653149..dda6569 100644
--- a/machines/helium.nix
+++ b/machines/helium.nix
@@ -10,7 +10,7 @@ in {
security.sudo.wheelNeedsPassword = false;
boot.initrd.availableKernelModules = [
- "xhi_pci" "ehci_pci" "ahci"
+ "ehci_pci" "ahci"
"usb_storage" "sd_mod"
];
boot.kernelModules = [ "kvm-intel" ];
@@ -136,18 +136,11 @@ in {
nix.maxJobs = lib.mkDefault 4;
nix.buildMachines = [
{
- hostName = "192.168.1.42";
- sshUser = "ben";
- sshKey = "/home/ben/.ssh/id_rsa";
- system = "x86_64-linux";
- }
- {
hostName = "dev.simatime.com";
sshUser = "ben";
sshKey = "/home/ben/.ssh/id_rsa";
system = "x86_64-linux";
}
-
];
nix.distributedBuilds = true;
nix.trustedUsers = [ "root" "ben" ];