nix/modules/systemd-boot-efi.nix

9 lines
126 B
Nix
Raw Normal View History

2023-09-04 11:40:30 -05:00
{ config, pkgs, ... }: {
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
}