summaryrefslogtreecommitdiff
path: root/custom/uucp-notifyclient.nix
blob: 80027f2b494b8bf1a53ec4adb5111af5a72c325b (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 = config.services.notify-users;
      };
    };
  };
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.remoteNodes != {}) {
    assertions = map (user: { assertion = elem user config.services.notify-users; message = "Notification must be allowed for ${user}!"; }) (unique (concatLists (mapAttrsToList (name: { allowedUsers, ... }: allowedUsers) cfg.remoteNodes)));

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