We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7154327 commit bb9f062Copy full SHA for bb9f062
modules/common/services/performance/default.nix
@@ -8,6 +8,13 @@
8
}:
9
let
10
cfg = config.ghaf.services.performance;
11
+
12
+ tunedNoDesktop = pkgs.tuned.overrideAttrs (old: {
13
+ postInstall = (old.postInstall or "") + ''
14
+ rm -f "$out/share/applications/"*.desktop
15
+ '';
16
+ });
17
18
inherit (lib)
19
getExe
20
getExe'
@@ -138,7 +145,7 @@ in
138
145
];
139
146
services.system76-scheduler = {
140
147
useStockConfig = false;
141
- };
148
+ services.tuned.package = tunedNoDesktop;
142
149
systemd.services = mkIf config.ghaf.profiles.debug.enable {
143
150
tuned = {
144
151
serviceConfig.ExecStart = [
0 commit comments