aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/hpserver.nix
blob: c6c1fee4a3239ce30e9de614594200f2a96e2ae5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{...}: {
  role.jaki = "workstation";
  jaki = {
    bootloader = "grub";
    disks.disk = "/dev/disk/by-id/wwn-0x600508b1001c0d733397035f990e3942";
    meta = {
      globalDataDir = "/srv";
      hostname = "hpserver";
      system = "x86_64-linux";
    };
  };
  nixpkgs.overlays = [(self: super: {utillinux = super.util-linux;})];

  home-manager.backupFileExtension = "backup";
  boot.initrd.availableKernelModules = ["ehci_pci" "ata_piix" "uhci_hcd" "hpsa" "usb_storage" "usbhid" "sd_mod"];
}