12 lines
272 B
Nix
12 lines
272 B
Nix
{ ... }:
|
|
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.resumeDevice = "/dev/mapper/luksroot";
|
|
boot.consoleLogLevel = 3;
|
|
boot.initrd.systemd.enable = true;
|
|
boot.initrd.verbose = false;
|
|
boot.loader.timeout = 0;
|
|
}
|