summary refs log tree commit diff stats
path: root/hosts/by-name/server1/hardware.nix
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2025-01-25 21:39:14 +0100
committerSilas Schöffel <sils@sils.li>2025-01-25 21:40:45 +0100
commitcd1c9cb118ea7aec54907e5130ee61bd7e9fa66c (patch)
tree7d561cc2ca33bb609a5b1eeaea298d3a8afd69fe /hosts/by-name/server1/hardware.nix
parentfeat(etesync): migrate to server2 (diff)
downloadnixos-server-cd1c9cb118ea7aec54907e5130ee61bd7e9fa66c.zip
feat(hosts)!: remove server1
This host is unused and therefore unneeded
Diffstat (limited to '')
-rw-r--r--hosts/by-name/server1/hardware.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/hosts/by-name/server1/hardware.nix b/hosts/by-name/server1/hardware.nix
deleted file mode 100644
index 9abc64c..0000000
--- a/hosts/by-name/server1/hardware.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{modulesPath, ...}: {
-  imports = [
-    (modulesPath + "/profiles/qemu-guest.nix")
-    (modulesPath + "/profiles/headless.nix")
-  ];
-
-  vhack.disko = {
-    enable = true;
-    # FIXME: Find a better way to specify the disk
-    disk = "/dev/vda";
-  };
-  boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk"];
-  boot.initrd.kernelModules = [];
-}