diff --git a/home/modules/packages.nix b/home/modules/packages.nix index e32b0e1..fbb757d 100644 --- a/home/modules/packages.nix +++ b/home/modules/packages.nix @@ -28,7 +28,7 @@ let #luminanceHDR # FIXME, build failure xournalpp ] - ++ lib.optionals pkgs.stdenv.isDarwin [ + ++ lib.optionals pkgs.stdenv.isLinux [ gimp ]; diff --git a/hosts/thinknix/default.nix b/hosts/thinknix/default.nix index 431f3ba..92abe46 100644 --- a/hosts/thinknix/default.nix +++ b/hosts/thinknix/default.nix @@ -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; }