From a309b578dbd5aa0a9b8b172613e192eeab4d00d2 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 15 Dec 2024 17:06:16 +0100 Subject: [PATCH] shinobu: Disable TPM2 --- machines/shinobu/hardware-configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/machines/shinobu/hardware-configuration.nix b/machines/shinobu/hardware-configuration.nix index e6133b0..7217e6f 100644 --- a/machines/shinobu/hardware-configuration.nix +++ b/machines/shinobu/hardware-configuration.nix @@ -52,5 +52,8 @@ }; }; + # no TPM installed, causes boot to be delayed by 90s (timeout waiting for TPM) + systemd.tpm2.enable = false; + powerManagement.cpuFreqGovernor = "powersave"; }