mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-26 22:45:03 +01:00
15 lines
218 B
Nix
15 lines
218 B
Nix
|
# This has not yet been tested.
|
||
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
# Bootloader.
|
||
|
boot.loader = {
|
||
|
grub = {
|
||
|
enable = true;
|
||
|
efiSupport = true;
|
||
|
};
|
||
|
efi = {
|
||
|
canTouchEfiVariables = true;
|
||
|
};
|
||
|
};
|
||
|
}
|