From 52f00c84cc7b74c04c825d0e4645589651dbd375 Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Tue, 29 Apr 2025 13:57:19 +0200 Subject: [PATCH] hermit/configuration.nix: enable gpg-agent, disable auto-cpufreq --- hosts/hermit/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/hermit/configuration.nix b/hosts/hermit/configuration.nix index 8140469..33748b6 100644 --- a/hosts/hermit/configuration.nix +++ b/hosts/hermit/configuration.nix @@ -14,7 +14,6 @@ services = { fstrim.enable = lib.mkDefault true; thermald.enable = true; - auto-cpufreq.enable = true; printing.enable = true; avahi = { enable = true; @@ -24,6 +23,10 @@ }; virtualisation.docker.enable = true; + programs.gnupg.agent = { + enable = true; + pinentryPackage = pkgs.pinentry-qt; + }; modules = { desktops.hyprland.enable = true;