summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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" ];