quintessence/modules/boot.nix
2026-02-12 15:00:24 -08:00

10 lines
334 B
Nix

## Controls the bootloader
{ inputs, config, pkgs, variables, ... }:
{
# Enables systemd-boot, I dislike Grub
boot.loader.systemd-boot.enable = true;
# Allows the bootloader to touch things in UEFI and such
boot.loader.efi.canTouchEfiVariables = true;
# Allows the firmware updater to work
services.fwupd.enable = true;
}