From 22a1b19301d10ade4d9dab166f09cec526e0be51 Mon Sep 17 00:00:00 2001 From: Weckyy702 Date: Tue, 17 Mar 2026 00:14:43 +0100 Subject: [PATCH] nixos/sytemd-boot: Add systemd-boot --- modules/system-settings/systemd-boot.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 modules/system-settings/systemd-boot.nix diff --git a/modules/system-settings/systemd-boot.nix b/modules/system-settings/systemd-boot.nix new file mode 100644 index 0000000..4712752 --- /dev/null +++ b/modules/system-settings/systemd-boot.nix @@ -0,0 +1,6 @@ +{ + flake.modules.nixos.systemd-boot = { + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + }; +}