mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
29 lines
725 B
Nix
29 lines
725 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.programs.rog-control-center;
|
|
in
|
|
{
|
|
options = {
|
|
programs.rog-control-center = {
|
|
enable = lib.mkEnableOption (lib.mdDoc "the rog-control-center application");
|
|
|
|
autoStart = lib.mkOption {
|
|
default = false;
|
|
type = lib.types.bool;
|
|
description = lib.mdDoc "Whether rog-control-center should be started automatically.";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [
|
|
pkgs.asusctl
|
|
(lib.mkIf cfg.autoStart (pkgs.makeAutostartItem { name = "rog-control-center"; package = pkgs.asusctl; }))
|
|
];
|
|
|
|
services.asusd.enable = true;
|
|
};
|
|
|
|
meta.maintainers = pkgs.asusctl.meta.maintainers;
|
|
}
|