infra/nix/os/devices/steveej-t14/boot.nix

11 lines
212 B
Nix
Raw Normal View History

2020-12-21 14:35:50 +01:00
{ lib
, pkgs
2020-12-21 14:35:50 +01:00
, ...
}:
{
boot.loader.grub.efiInstallAsRemovable = lib.mkForce true;
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_latest;
2020-12-21 14:35:50 +01:00
}