summary refs log tree commit diff
path: root/nixos/modules/services/networking/nullidentdmod.nix
blob: b0d338a27941086f7815d59417f0156da8dba6e7 (plain) (blame)
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
{ config, lib, pkgs, ... }: with lib; let
  cfg = config.services.nullidentdmod;

in {
  options.services.nullidentdmod = with types; {
    enable = mkEnableOption "the nullidentdmod identd daemon";

    userid = mkOption {
      type = nullOr str;
      description = "User ID to return. Set to null to return a random string each time.";
      default = null;
      example = "alice";
    };
  };

  config = mkIf cfg.enable {
    systemd.sockets.nullidentdmod = {
      description = "Socket for identd (NullidentdMod)";
      listenStreams = [ "113" ];
      socketConfig.Accept = true;
      wantedBy = [ "sockets.target" ];
    };

    systemd.services."nullidentdmod@" = {
      description = "NullidentdMod service";
      serviceConfig = {
        DynamicUser = true;
        ExecStart = "${pkgs.nullidentdmod}/bin/nullidentdmod${optionalString (cfg.userid != null) " ${cfg.userid}"}";
        StandardInput = "socket";
        StandardOutput = "socket";
      };
    };
  };
}