zaphyra's git: nixfiles

zaphyra's nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
{
  config,
  lib,
  ...
}:
let
  cfg = config.common.services.power-profiles-daemon;

in
{

  options.common.services.power-profiles-daemon.enable = lib.mkEnableOption "power-profiles-daemon";

  config = lib.mkIf cfg.enable {
    common.configure.persist.system.dirs = [
      "/var/lib/power-profiles-daemon"
    ];

    services.power-profiles-daemon.enable = true;
  };

}