7 lines
201 B
Nix
7 lines
201 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
# Bootloader
|
||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
boot.tmp.cleanOnBoot = true;
|
||
|
boot.initrd.systemd.enable = true;
|
||
|
boot.kernelParams = ["quiet"];
|
||
|
}
|