about summary refs log tree commit diff
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2018-06-05 18:15:29 +0200
committerProfpatsch <mail@profpatsch.de>2018-06-05 18:22:56 +0200
commit12cda91cf3a6cb3c08216e64f878e580530093ac (patch)
treea6681adfca2d3dd8048b7f6f8675672d857df5b8
parent0facc96c126b359759d6e6b5d7812d462b307e22 (diff)
machines/labnet: remove labtop
The machine’s mainboard broke, so it’s gone.
-rw-r--r--machines/default.nix1
-rw-r--r--machines/labnet/labtops.nix17
2 files changed, 0 insertions, 18 deletions
diff --git a/machines/default.nix b/machines/default.nix
index 2d12faa0..a9168d84 100644
--- a/machines/default.nix
+++ b/machines/default.nix
@@ -18,7 +18,6 @@ with import ../lib;
     titan      = callMachine devhell/titan.nix {};
   };
   labnet.labtops = {
-    inherit (callNetwork ./labnet/labtops.nix {}) labtop;
     hannswurscht = callMachine ./labnet/hannswurscht.nix {};
   };
   profpatsch = {
diff --git a/machines/labnet/labtops.nix b/machines/labnet/labtops.nix
deleted file mode 100644
index 190fd53b..00000000
--- a/machines/labnet/labtops.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
-  labtop = {
-    vuizvui.user.openlab.labtops.enable = true;
-    boot.kernelModules = [ "kvm-intel" ];
-    boot.initrd.availableKernelModules = [
-      "uhci_hcd" "ehci_pci" "ata_piix" "firewire_ohci" "usb_storage"
-    ];
-
-    vuizvui.hardware.thinkpad.enable = true;
-
-    hardware.trackpoint.enable = false;
-
-    networking.enableIntel3945ABGFirmware = true;
-
-  };
-
-}