Merge pull request 'gluttony: use grub as bootloader because of no uefi support' (!121) from gluttony-boot into main
Build topology graph / evals (push) Successful in 3m22s
Eval nix flake / evals (push) Failing after 3h12m40s

Reviewed-on: #121
This commit was merged in pull request #121.
This commit is contained in:
2026-01-24 22:25:28 +01:00
+9
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;