about summary refs log tree commit diff
path: root/machines/labnet/labtop.nix
blob: cee5c11b970826d0b9efb238b71af745f503697e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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";
  };
}