nixcfg/common/efi.nix
2025-06-11 01:13:48 -04:00

7 lines
171 B
Nix
Executable file

{ pkgs, config, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
fileSystems."/boot".options = [ "umask=0077" ];
}