about summary refs log tree commit diff
path: root/machines/labnet/labtops.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/labnet/labtops.nix')
-rw-r--r--machines/labnet/labtops.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/machines/labnet/labtops.nix b/machines/labnet/labtops.nix
new file mode 100644
index 00000000..cee5c11b
--- /dev/null
+++ b/machines/labnet/labtops.nix
@@ -0,0 +1,24 @@
+{
+  labtop = {
+    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;
+
+    users.users.kevin = {
+      isNormalUser = true;
+      password = "kevin";
+    };
+    users.users.root.password = "root";
+  };
+
+  hannswurscht = {
+    nixpkgs.system = "i686-linux";
+  };
+}