summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorMaciej Krüger <mkg20001@gmail.com>2023-06-15 21:56:00 +0200
committerGitHub <noreply@github.com>2023-06-15 21:56:00 +0200
commit95c729c030b3011c5c89107ac9fa30f7249135fe (patch)
tree468f5605462321979b1964a71f0c0a59f0620722 /nixos
parent7a53daed2a71fd4b7b177bc48f2f9c996a5bb4b2 (diff)
parent4017ae36a215fb6124d370a6bc254db595d4be77 (diff)
Merge pull request #223952 from m-bdf/fix-cfs-zen-tweaks
Fix cfs-zen-tweaks
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/cfs-zen-tweaks.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/nixos/modules/programs/cfs-zen-tweaks.nix b/nixos/modules/programs/cfs-zen-tweaks.nix
index 97c2570475c4..fc05bcd11ecb 100644
--- a/nixos/modules/programs/cfs-zen-tweaks.nix
+++ b/nixos/modules/programs/cfs-zen-tweaks.nix
@@ -23,6 +23,12 @@ in
config = mkIf cfg.enable {
systemd.packages = [ pkgs.cfs-zen-tweaks ];
- systemd.services.set-cfs-tweak.wantedBy = [ "multi-user.target" "suspend.target" "hibernate.target" "hybrid-sleep.target" "suspend-then-hibernate.target" ];
+ systemd.services.set-cfs-tweaks.wantedBy = [
+ "multi-user.target"
+ "suspend.target"
+ "hibernate.target"
+ "hybrid-sleep.target"
+ "suspend-then-hibernate.target"
+ ];
};
}