summaryrefslogtreecommitdiff
path: root/systems/glados/boot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'systems/glados/boot.nix')
-rw-r--r--systems/glados/boot.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/systems/glados/boot.nix b/systems/glados/boot.nix
deleted file mode 100644
index 1a1d29e..0000000
--- a/systems/glados/boot.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- config,
- lib,
- ...
-}:
-
-{
- boot = {
- 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;
- };
- };
-}