Move folder
This commit is contained in:
23
system/modules/boot.nix
Normal file
23
system/modules/boot.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user