Files
nix-config/hosts/pi4/boot.nix
2025-05-18 20:28:20 -05:00

13 lines
292 B
Nix
Executable File

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