Files
lavitz/modules/boot.nix
2025-05-29 23:48:27 -06:00

10 lines
206 B
Nix

{ config, pkgs, ... }:
{
# Bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Use latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
}