nixcfg/common/efi.nix
2025-06-04 03:02:32 -04:00

7 lines
171 B
Nix

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