Files
nix-config/hosts/pi4/boot.nix
2025-05-18 18:57:47 -05:00

12 lines
211 B
Nix
Executable File

{ pkgs, ... }:
{
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = false;
};
plymouth.enable = true;
kernelPackages = pkgs.linuxPackages_latest;
};
}