10 lines
197 B
Nix
10 lines
197 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# Use the gummiboot efi boot loader.
|
||
|
boot.loader.gummiboot.enable = true;
|
||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
|
||
|
boot.initrd.kernelModules = [ "fbcon" ];
|
||
|
}
|