Files
nixos/system/modules/boot.nix

24 lines
467 B
Nix
Raw Normal View History

2026-02-22 19:54:17 +00:00
{ config, pkgs, lib, ... }:
{
boot = {
kernelParams = ["nohibernate" "ipv6.disable=1"];
tmp.cleanOnBoot = true;
# supportedFilesystems = ["ntfs"];
loader = {
grub = {
device = "nodev";
efiSupport = true;
enable = true;
useOSProber = true;
timeoutStyle = "menu";
efiInstallAsRemovable = true;
extraConfig = ''
insmod tpm
'';
};
timeout = 300;
};
};
}