hosts/dandelion: init

This commit is contained in:
LavaDesu 2024-03-13 16:00:37 +11:00
parent a1510113a5
commit d13a8e5cd4
Signed by: cilly
GPG key ID: 6500251E087653C9
7 changed files with 107 additions and 3 deletions

View file

@ -0,0 +1,18 @@
{ config, inputs, pkgs, ... }: {
boot = {
loader = {
systemd-boot.enable = false;
efi.canTouchEfiVariables = true;
grub = {
enable = true;
device = "/dev/sda";
};
};
initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
initrd.kernelModules = [ "nvme" ];
kernel.sysctl = {
"kernel.core_pattern" = "|/bin/false";
"kernel.sysrq" = 1;
};
};
}