use grub as bootloader because of no uefi support

This commit is contained in:
Vegard Bieker Matthey
2026-01-24 22:04:54 +01:00
parent 689d6582ae
commit 604b528dd3

View File

@@ -11,6 +11,15 @@
];
systemd.network.enable = lib.mkForce false;
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
boot.loader = {
systemd-boot.enable = false; # no uefi support on this device
grub.device = "/dev/sda";
grub.enable = true;
};
boot.tmp.cleanOnBoot = true;
networking =
let
hostConf = values.hosts.gluttony;