hosts/alyssum: init

This commit is contained in:
Cilly Leang 2026-05-28 18:08:15 +10:00
parent cc43450dd1
commit 0f7393714f
Signed by: cilly
GPG key ID: 6500251E087653C9
6 changed files with 90 additions and 0 deletions

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

@ -0,0 +1,10 @@
{ ... }: {
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
initrd.kernelModules = [ "nvme" ];
};
}