dotfiles/modules/boot/systemd-boot.nix

25 lines
349 B
Nix
Raw Normal View History

2024-07-19 12:00:55 +00:00
{
lib,
config,
pkgs,
...
}:
2024-07-18 21:56:00 +00:00
with lib;
let
cfg = config.modules.systemd-boot;
2024-07-19 12:00:55 +00:00
in
{
2024-07-18 21:56:00 +00:00
options.modules.systemd-boot = {
enable = mkEnableOption "systemd-boot";
};
config = mkIf cfg.enable {
boot.loader = {
systemd-boot.enable = true;
systemd-boot.editor = false;
efi.canTouchEfiVariables = true;
};
};
2024-07-19 12:00:55 +00:00
}