mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-26 22:45:03 +01:00
add base-efi-grub.nix template
This commit is contained in:
parent
a6f14f1dd9
commit
c59321cef3
14
modules/base-efi-grub.nix
Normal file
14
modules/base-efi-grub.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# This has not yet been tested.
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
# Bootloader.
|
||||||
|
boot.loader = {
|
||||||
|
grub = {
|
||||||
|
enable = true;
|
||||||
|
efiSupport = true;
|
||||||
|
};
|
||||||
|
efi = {
|
||||||
|
canTouchEfiVariables = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user