nix/nixos/common/modules/boot.nix
2023-11-25 21:26:11 +09:00

11 lines
No EOL
347 B
Nix

{ lib, config, pkgs, desktop, ... }: {
# IF we're booting into a GUI, load in pretty things
imports = [ ] ++ lib.optional (builtins.isString desktop) ./plymouth.nix;
# Bootloader
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.enable = true;
boot.tmp.cleanOnBoot = true;
boot.initrd.systemd.enable = true;
}