Files

65 lines
2.1 KiB
Nix

# Adds a settings option, for declarative config
{ pkgs, lib, config, ... }:
let
cfg = config.services.hardware.openrgb;
settingsFormat = pkgs.formats.json {};
settingsFile = settingsFormat.generate "OpenRGB" cfg.settings;
in {
disabledModules = ["services/hardware/openrgb.nix"];
options.services.hardware.openrgb = {
enable = lib.mkEnableOption "OpenRGB server, for RGB lighting control";
package = lib.mkPackageOption pkgs "openrgb" { };
settings = lib.mkOption {
type = settingsFormat.type;
default = {};
};
motherboard = lib.mkOption {
type = lib.types.nullOr (lib.types.enum [ "amd" "intel" ]);
default = if config.hardware.cpu.intel.updateMicrocode then "intel"
else if config.hardware.cpu.amd.updateMicrocode then "amd"
else null;
defaultText = lib.literalMD ''
if config.hardware.cpu.intel.updateMicrocode then "intel"
else if config.hardware.cpu.amd.updateMicrocode then "amd"
else null;
'';
description = "CPU family of motherboard. Allows for addition motherboard i2c support.";
};
server.port = lib.mkOption {
type = lib.types.port;
default = 6742;
description = "Set server port of openrgb.";
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
services.udev.packages = [ cfg.package ];
boot.kernelModules = [ "i2c-dev" ]
++ lib.optionals (cfg.motherboard == "amd") [ "i2c-piix4" ]
++ lib.optionals (cfg.motherboard == "intel") [ "i2c-i801" ];
systemd.services.openrgb = {
description = "OpenRGB server daemon";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
StateDirectory = "OpenRGB";
WorkingDirectory = "/var/lib/OpenRGB";
ExecStartPre = lib.optionalString (cfg.settings != {}) "${lib.getExe' pkgs.coreutils "cp"} --dereference ${settingsFile} /var/lib/OpenRGB/OpenRGB.json";
ExecStart = "${lib.getExe cfg.package} --verbose --server --server-port ${toString cfg.server.port} --config /var/lib/OpenRGB";
Restart = "always";
};
};
};
meta.maintainers = [ ];
}