Files
lavitz/modules/boot.nix
2025-06-30 13:17:15 -06:00

11 lines
207 B
Nix

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