nixos-config/uefi.nix

8 lines
156 B
Nix
Raw Normal View History

2015-05-21 16:13:47 +02:00
{ config, pkgs, ... }:
{
# Use the gummiboot efi boot loader.
2016-06-02 20:55:12 +02:00
boot.loader.systemd-boot.enable = true;
2015-05-21 16:13:47 +02:00
boot.loader.efi.canTouchEfiVariables = true;
}