Files
nixos/Droidnix/generated/hosts/traveldroid/boot.nix
T
2026-03-21 19:46:36 +00:00

17 lines
300 B
Nix

{ inputs, config, lib, pkgs, ... }:
{
boot.loader.grub = {
enable = true;
efiSupport = true;
device = "nodev";
useOSProber = true;
};
#boot.efi.canTouchEfiVariables = true;
boot.kernelParams = [
"systemd.mask=dev-tpm0.device"
"systemd.mask=dev-tpmrm0.device"
];
}