summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/wbob.nix
blob: d6916f006aee2378a18567ef33c747a6a5b5fb3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, pkgs, ... }:
{
  imports =
    [ # Include the results of the hardware scan.
      ../2configs/main-laptop.nix
    ];
    krebs = {
        enable = true;
        retiolum.enable = true;
        build.host = config.krebs.hosts.wbob;
    };
    boot.loader.grub.device = "/dev/sda";
    boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" ];
    boot.kernelModules = [ "kvm-intel" ];
    fileSystems."/" = {
        device = "/dev/sda1";
        fsType = "ext4";
    };
}