From 0d6806bbae44632ebac8989cc48fea6f0c447e28 Mon Sep 17 00:00:00 2001 From: Peter Lehmann Date: Sat, 14 Dec 2024 15:47:31 +0100 Subject: [PATCH] Enable Netbootxyz --- modules/common/boot.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/common/boot.nix b/modules/common/boot.nix index dab3a52..3f72396 100644 --- a/modules/common/boot.nix +++ b/modules/common/boot.nix @@ -2,7 +2,10 @@ # Use the systemd-boot EFI boot loader. boot = { loader = { - systemd-boot.enable = true; + systemd-boot = { + enable = true; + netbootxyz.enable = true; + }; efi.canTouchEfiVariables = true; }; tmp.cleanOnBoot = true;