systemd-boot is default now

This commit is contained in:
Osman Faruk Bayram 2025-10-21 21:02:44 +03:00
parent b431744859
commit 42209ddb6a
9 changed files with 15 additions and 25 deletions

View file

@ -0,0 +1,8 @@
{config, lib, ...}:
{
config = lib.mkIf (config.osbmModules.hardware.systemd-boot.enable) {
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
};
}