mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
142074c2a8
Fix descriptions that don't account for (1) the "Whether to enable" prefix or (2) the automatically added trailing dot.
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.supergfxd;
|
|
json = pkgs.formats.json { };
|
|
in
|
|
{
|
|
options = {
|
|
services.supergfxd = {
|
|
enable = lib.mkEnableOption (lib.mdDoc "the supergfxd service");
|
|
|
|
settings = lib.mkOption {
|
|
type = lib.types.nullOr json.type;
|
|
default = null;
|
|
description = lib.mdDoc ''
|
|
The content of /etc/supergfxd.conf.
|
|
See https://gitlab.com/asus-linux/supergfxctl/#config-options-etcsupergfxdconf.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ pkgs.supergfxctl ];
|
|
|
|
environment.etc."supergfxd.conf" = lib.mkIf (cfg.settings != null) {
|
|
source = json.generate "supergfxd.conf" cfg.settings;
|
|
mode = "0644";
|
|
};
|
|
|
|
services.dbus.enable = true;
|
|
|
|
systemd.packages = [ pkgs.supergfxctl ];
|
|
systemd.services.supergfxd.wantedBy = [ "multi-user.target" ];
|
|
systemd.services.supergfxd.path = [ pkgs.kmod pkgs.pciutils ];
|
|
|
|
services.dbus.packages = [ pkgs.supergfxctl ];
|
|
services.udev.packages = [ pkgs.supergfxctl ];
|
|
};
|
|
|
|
meta.maintainers = pkgs.supergfxctl.meta.maintainers;
|
|
}
|