ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / nixos / modules / services / hardware / asusd.nix
blob316164562b80dd646c609b34e9e73214092f1797
2   config,
3   lib,
4   pkgs,
5   ...
6 }:
8 let
9   cfg = config.services.asusd;
12   options = {
13     services.asusd = {
14       enable = lib.mkEnableOption "the asusd service for ASUS ROG laptops";
16       package = lib.mkPackageOption pkgs "asusctl" { };
18       enableUserService = lib.mkOption {
19         type = lib.types.bool;
20         default = false;
21         description = ''
22           Activate the asusd-user service.
23         '';
24       };
26       animeConfig = lib.mkOption {
27         type = lib.types.nullOr lib.types.str;
28         default = null;
29         description = ''
30           The content of /etc/asusd/anime.ron.
31           See https://asus-linux.org/asusctl/#anime-control.
32         '';
33       };
35       asusdConfig = lib.mkOption {
36         type = lib.types.nullOr lib.types.str;
37         default = null;
38         description = ''
39           The content of /etc/asusd/asusd.ron.
40           See https://asus-linux.org/asusctl/.
41         '';
42       };
44       auraConfig = lib.mkOption {
45         type = lib.types.nullOr lib.types.str;
46         default = null;
47         description = ''
48           The content of /etc/asusd/aura.ron.
49           See https://asus-linux.org/asusctl/#led-keyboard-control.
50         '';
51       };
53       profileConfig = lib.mkOption {
54         type = lib.types.nullOr lib.types.str;
55         default = null;
56         description = ''
57           The content of /etc/asusd/profile.ron.
58           See https://asus-linux.org/asusctl/#profiles.
59         '';
60       };
62       fanCurvesConfig = lib.mkOption {
63         type = lib.types.nullOr lib.types.str;
64         default = null;
65         description = ''
66           The content of /etc/asusd/fan_curves.ron.
67           See https://asus-linux.org/asusctl/#fan-curves.
68         '';
69       };
71       userLedModesConfig = lib.mkOption {
72         type = lib.types.nullOr lib.types.str;
73         default = null;
74         description = ''
75           The content of /etc/asusd/asusd-user-ledmodes.ron.
76           See https://asus-linux.org/asusctl/#led-keyboard-control.
77         '';
78       };
79     };
80   };
82   config = lib.mkIf cfg.enable {
83     environment.systemPackages = [ cfg.package ];
85     environment.etc =
86       let
87         maybeConfig =
88           name: cfg:
89           lib.mkIf (cfg != null) {
90             source = pkgs.writeText name cfg;
91             mode = "0644";
92           };
93       in
94       {
95         "asusd/anime.ron" = maybeConfig "anime.ron" cfg.animeConfig;
96         "asusd/asusd.ron" = maybeConfig "asusd.ron" cfg.asusdConfig;
97         "asusd/aura.ron" = maybeConfig "aura.ron" cfg.auraConfig;
98         "asusd/profile.ron" = maybeConfig "profile.ron" cfg.profileConfig;
99         "asusd/fan_curves.ron" = maybeConfig "fan_curves.ron" cfg.fanCurvesConfig;
100         "asusd/asusd_user_ledmodes.ron" = maybeConfig "asusd_user_ledmodes.ron" cfg.userLedModesConfig;
101       };
103     services.dbus.enable = true;
104     systemd.packages = [ cfg.package ];
105     services.dbus.packages = [ cfg.package ];
106     services.udev.packages = [ cfg.package ];
107     services.supergfxd.enable = lib.mkDefault true;
109     systemd.user.services.asusd-user.enable = cfg.enableUserService;
110   };
112   meta.maintainers = pkgs.asusctl.meta.maintainers;