10 lines
334 B
Nix
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;
|
|
}
|