blob: c9224c8fb1c95d5402fed98084560c357ffb5d33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
config,
lib,
pkgs,
...
}:
{
boot = {
kernelPackages = pkgs.linuxKernel.packages.linux_6_11;
kernelParams =
[
"amd_pstate=active"
]
# Don't use GSP Firmware on proprietary driver
# https://github.com/NVIDIA/open-gpu-kernel-modules/issues/693
++ lib.optional (!config.hardware.nvidia.open) "nvidia.NVreg_EnableGpuFirmware=0";
lanzaboote = {
enable = true;
};
supportedFilesystems = [ "ntfs" ]; # for game drive
};
}
|