nix/modules/systemd-boot-efi.nix
2023-09-04 11:40:30 -05:00

9 lines
126 B
Nix

{ config, pkgs, ... }: {
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
}