Files
setup-machines/nixos/boot.nix

8 lines
133 B
Nix
Raw Normal View History

2024-08-19 14:35:42 +02:00
{ config, pkgs, ... }:
{
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}