diff --git a/services.nix b/services.nix index 9b0ae4f..96ad61e 100644 --- a/services.nix +++ b/services.nix @@ -94,6 +94,17 @@ in { }) ] (x: builtins.toJSON x)); + + systemd.services."hdapsd@" = { + serviceConfig = { + Nice = -20; + CPUSchedulingPolicy = "fifo"; + CPUSchedulingPriority = 99; + IOSchedulingClass = "realtime"; + IOSchedulingPriority = 0; + }; + }; + programs.gnupg = { agent.enable = true; dirmngr.enable = true;