mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
38 lines
874 B
Nix
38 lines
874 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let cfg = config.hardware.openrgb;
|
||
|
|
||
|
in {
|
||
|
options.hardware.openrgb = {
|
||
|
enable = mkEnableOption "OpenRGB";
|
||
|
package = mkOption {
|
||
|
type = types.package;
|
||
|
default = pkgs.openrgb;
|
||
|
defaultText = "pkgs.openrgb";
|
||
|
description = ''
|
||
|
The package implementing OpenRGB.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
config = mkIf cfg.enable {
|
||
|
boot.kernelModules = [ "v4l2loopback" "i2c-dev" "i2c-piix4" ];
|
||
|
environment.systemPackages = [ cfg.package ];
|
||
|
services.udev.packages = [ cfg.package ];
|
||
|
|
||
|
systemd.services.openrgb = {
|
||
|
description = "OpenRGB Daemon";
|
||
|
wantedBy = [ "multi-user.target" ];
|
||
|
serviceConfig = {
|
||
|
ExecStart = "${cfg.package}/bin/openrgb --server";
|
||
|
Restart = "on-failure";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta = {
|
||
|
maintainers = with lib.maintainers; [ misterio77 ];
|
||
|
};
|
||
|
}
|