about summary refs log tree commit diff
path: root/nixos/modules/programs/cfs-zen-tweaks.nix
blob: bc162640393527f604e40676dd8ac01c74b840a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# CFS Zen Tweaks

{ config, pkgs, lib, ... }:

let

  cfg = config.programs.cfs-zen-tweaks;

in

{

  meta = {
    maintainers = with lib.maintainers; [ mkg20001 ];
  };

  options = {
    programs.cfs-zen-tweaks.enable = lib.mkEnableOption "CFS Zen Tweaks";
  };

  config = lib.mkIf cfg.enable {
    systemd.packages = [ pkgs.cfs-zen-tweaks ];

    systemd.services.set-cfs-tweaks.wantedBy = [
      "multi-user.target"
      "suspend.target"
      "hibernate.target"
      "hybrid-sleep.target"
      "suspend-then-hibernate.target"
    ];
  };
}