summaryrefslogtreecommitdiff
path: root/systems/glados/boot.nix
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-02-10 14:24:36 -0500
committerSeth Flynn <[email protected]>2025-02-10 20:26:23 -0500
commit73046857ef20f99983aaa95c04e0061615478583 (patch)
tree3da59e3014fdb1ed8934c6138a8179403a8ae3e8 /systems/glados/boot.nix
parent79ada858cfdb056480c38d087c4600c39e3c05fe (diff)
glados: don't have dedicated boot file
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;
- };
- };
-}