nix/nixos/common/modules/bootloader.nix

7 lines
201 B
Nix
Raw Normal View History

2023-09-21 15:22:59 +02:00
{ config, pkgs, ... }: {
# Bootloader
boot.loader.efi.canTouchEfiVariables = true;
boot.tmp.cleanOnBoot = true;
boot.initrd.systemd.enable = true;
boot.kernelParams = ["quiet"];
}