mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00: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.
44 lines
902 B
Nix
44 lines
902 B
Nix
{ config, lib, pkgs, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.services.usbrelayd;
|
|
in
|
|
{
|
|
options.services.usbrelayd = with types; {
|
|
enable = mkEnableOption "USB Relay MQTT daemon";
|
|
|
|
broker = mkOption {
|
|
type = str;
|
|
description = "Hostname or IP address of your MQTT Broker.";
|
|
default = "127.0.0.1";
|
|
example = [
|
|
"mqtt"
|
|
"192.168.1.1"
|
|
];
|
|
};
|
|
|
|
clientName = mkOption {
|
|
type = str;
|
|
description = "Name, your client connects as.";
|
|
default = "MyUSBRelay";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
environment.etc."usbrelayd.conf".text = ''
|
|
[MQTT]
|
|
BROKER = ${cfg.broker}
|
|
CLIENTNAME = ${cfg.clientName}
|
|
'';
|
|
|
|
services.udev.packages = [ pkgs.usbrelayd ];
|
|
systemd.packages = [ pkgs.usbrelayd ];
|
|
users.groups.usbrelay = { };
|
|
};
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ wentasah ];
|
|
};
|
|
}
|