hosts/hazel: init

This commit is contained in:
LavaDesu 2025-04-05 13:05:59 +11:00
parent 3502a31065
commit 4d751d72b3
Signed by: cilly
GPG key ID: 6500251E087653C9
8 changed files with 121 additions and 8 deletions

10
hosts/hazel/kernel.nix Normal file
View file

@ -0,0 +1,10 @@
{ ... }: {
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
kernelModules = [ "kvm-amd" ];
};
}