mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
117 lines
3.1 KiB
Nix
117 lines
3.1 KiB
Nix
{ config
|
|
, lib
|
|
, pkgs
|
|
, ...
|
|
}:
|
|
with lib; let
|
|
cfg = config.hardware.uni-sync;
|
|
in
|
|
{
|
|
meta.maintainers = with maintainers; [ yunfachi ];
|
|
|
|
options.hardware.uni-sync = {
|
|
enable = mkEnableOption "udev rules and software for Lian Li Uni Controllers";
|
|
package = mkPackageOption pkgs "uni-sync" { };
|
|
|
|
devices = mkOption {
|
|
default = [ ];
|
|
example = literalExpression ''
|
|
[
|
|
{
|
|
device_id = "VID:1111/PID:11111/SN:1111111111";
|
|
sync_rgb = true;
|
|
channels = [
|
|
{
|
|
mode = "PWM";
|
|
}
|
|
{
|
|
mode = "Manual";
|
|
speed = 100;
|
|
}
|
|
{
|
|
mode = "Manual";
|
|
speed = 54;
|
|
}
|
|
{
|
|
mode = "Manual";
|
|
speed = 0;
|
|
}
|
|
];
|
|
}
|
|
{
|
|
device_id = "VID:1010/PID:10101/SN:1010101010";
|
|
sync_rgb = false;
|
|
channels = [
|
|
{
|
|
mode = "Manual";
|
|
speed = 0;
|
|
}
|
|
];
|
|
}
|
|
]
|
|
'';
|
|
description = "List of controllers with their configurations.";
|
|
type = types.listOf (types.submodule {
|
|
options = {
|
|
device_id = mkOption {
|
|
type = types.str;
|
|
example = "VID:1111/PID:11111/SN:1111111111";
|
|
description = "Unique device ID displayed at each startup.";
|
|
};
|
|
sync_rgb = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
example = true;
|
|
description = "Enable ARGB header sync.";
|
|
};
|
|
channels = mkOption {
|
|
default = [ ];
|
|
example = literalExpression ''
|
|
[
|
|
{
|
|
mode = "PWM";
|
|
}
|
|
{
|
|
mode = "Manual";
|
|
speed = 100;
|
|
}
|
|
{
|
|
mode = "Manual";
|
|
speed = 54;
|
|
}
|
|
{
|
|
mode = "Manual";
|
|
speed = 0;
|
|
}
|
|
]
|
|
'';
|
|
description = "List of channels connected to the controller.";
|
|
type = types.listOf (types.submodule {
|
|
options = {
|
|
mode = mkOption {
|
|
type = types.enum [ "Manual" "PWM" ];
|
|
default = "Manual";
|
|
example = "PWM";
|
|
description = "\"PWM\" to enable PWM sync. \"Manual\" to set speed.";
|
|
};
|
|
speed = mkOption {
|
|
type = types.int;
|
|
default = "50";
|
|
example = "100";
|
|
description = "Fan speed as percentage (clamped between 0 and 100).";
|
|
};
|
|
};
|
|
});
|
|
};
|
|
};
|
|
});
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.etc."uni-sync/uni-sync.json".text = mkIf (cfg.devices != [ ]) (builtins.toJSON { configs = cfg.devices; });
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
services.udev.packages = [ cfg.package ];
|
|
};
|
|
}
|