Compare commits

...

2 commits

Author SHA1 Message Date
1b3a130561 thinknix: do not use powersave CPU governor
powersave turns out to be rather slow on today's software stacks
2025-05-20 23:56:37 +02:00
62e5c673c5 thinknix: disable broken tpm
tpm tpm0: A TPM error (714) occurred
attempting to create NULL primary
tpm tpm0: null key creation failed with
714
2025-05-20 23:54:35 +02:00
2 changed files with 3 additions and 1 deletions

View file

@ -33,4 +33,7 @@
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "18.09"; # Did you read the comment?
# since 25.05, this broke and started to slow down system startup. tpm is currently not utilised on this host, so simply disable.
security.tpm2.enable = false;
}

View file

@ -21,7 +21,6 @@
boot.extraModulePackages = [ ];
nix.settings.max-jobs = lib.mkDefault 4;
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
# modesetting is always better than intel (legacy)
services.xserver.videoDrivers = [ "modesetting" ];