summaryrefslogtreecommitdiff
path: root/modules/xnet/disk/boot.nix
blob: 65be2f31c81d5cb251abe2e74b5c44024b5aa418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, ... }:
let
  inherit (lib) mkDefault;
in
{
  boot = {
    loader.systemd-boot.enable = true;
    initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ];
    kernelModules = [ "kvm-intel" "kvm-amd" ];
    swraid.mdadmConf = "MAILADDR = nobody@example.com";
    tmp.cleanOnBoot = mkDefault true;
  };
}