vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / services / hardware / usbrelayd.nix
blob31e56ab1d16c61951055bafb2a43c40afa82c0b3
1 { config, lib, pkgs, ... }:
2 with lib;
3 let
4   cfg = config.services.usbrelayd;
5 in
7   options.services.usbrelayd = with types; {
8     enable = mkEnableOption "USB Relay MQTT daemon";
10     broker = mkOption {
11       type = str;
12       description = "Hostname or IP address of your MQTT Broker.";
13       default = "127.0.0.1";
14       example = [
15         "mqtt"
16         "192.168.1.1"
17       ];
18     };
20     clientName = mkOption {
21       type = str;
22       description = "Name, your client connects as.";
23       default = "MyUSBRelay";
24     };
25   };
27   config = mkIf cfg.enable {
29     environment.etc."usbrelayd.conf".text = ''
30       [MQTT]
31       BROKER = ${cfg.broker}
32       CLIENTNAME = ${cfg.clientName}
33     '';
35     services.udev.packages = [ pkgs.usbrelayd ];
36     systemd.packages = [ pkgs.usbrelayd ];
37     users.groups.usbrelay = { };
38   };
40   meta = {
41     maintainers = with lib.maintainers; [ wentasah ];
42   };