mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
11 lines
222 B
Nix
11 lines
222 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
# Bootloader.
|
||
|
boot.loader.grub = {
|
||
|
# This has to be filled out in config.nix:
|
||
|
# devices = [ "/dev/disk/by-uuid/..." ];
|
||
|
efiSupport = true;
|
||
|
efiInstallAsRemovable = true;
|
||
|
};
|
||
|
}
|