system: fix systemd-boot not applying for non-aarch64

This commit is contained in:
Donovan Glover 2024-10-11 11:55:42 -04:00
parent 8e3a8568e3
commit 140e61b54b
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -90,7 +90,7 @@ in
binfmt.emulatedSystems = mkIf (pkgs.system == "x86_64-linux") [ "aarch64-linux" ];
loader = {
systemd-boot = mkIf (!isPhone) {
systemd-boot = mkIf (pkgs.system != "aarch64-linux") {
enable = true;
editor = false;
configurationLimit = 10;