summaryrefslogtreecommitdiff
path: root/custom/uucp-notifyclient.nix
blob: 65c96c073e96d23b051f9398b90e7e1189f30036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.services.uucp.notify-client;

  nodeConfig = {
    options = {
      allowedUsers = mkOption {
        type = with types; uniq (listOf str);
        default = services.notify-users.allowedUsers;
      };
    };
  };
in {
  options = {
    services.uucp.notify-client = {
      remoteNodes = mkOption {
        type = with types; attrsOf (submodule nodeConfig);
        default = [];
        description = ''
          Servers to receive notifications from
        '';
      };
    };
  };

  imports = [ ./notify-users.nix ];

  config = mkIf (cfg.nodes != {}) {
    services.notify-users = concatMap ({ allowedUsers }: allowedUsers) cfg.remoteNodes;

    services.uucp.remoteNodes = mapAttrs (name: { allowedUsers }: { commands = map (user: "notify-${user}") allowedUsers; }) cfg.remoteNodes;
    services.uucp.commandPath = [ config.security.wrapperDir ];
  };
}