Fediversity/infra/common/hardware.nix

19 lines
299 B
Nix

{
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
initrd = {
availableKernelModules = [
"ata_piix"
"uhci_hcd"
"sr_mod"
"xen_blkfront"
];
kernelModules = [ "dm-snapshot" ];
};
};
}