Commit dbd587d520a6

Vincent Demeester <vincent@sbr.pm>
2025-12-16 12:20:39
fix(kerkouane): Disable TPM2 on VPS without hardware support
- Prevent tpm2-abrmd.service failures at boot - VPS environments lack physical TPM hardware Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent a6abc7d
Changed files (1)
systems
kerkouane
systems/kerkouane/extra.nix
@@ -25,6 +25,10 @@ in
 
   # TODO make it an option ? (otherwise I'll add it for all)
   users.users.vincent.linger = true;
+
+  # Disable TPM2 (VPS has no TPM hardware)
+  security.tpm2.enable = lib.mkForce false;
+
   services.openssh = {
     listenAddresses = [
       {