mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
49e97f8f88
* Added license: GPLv2. * Updated homepage and description. * CFLAGS are no longer necessary as of version 2.2.0. * Option '-a ::' is no longer necessary as of version 2.2.0.
45 lines
930 B
Nix
45 lines
930 B
Nix
{ config, lib, pkgs, ... }:
|
||
|
||
with lib;
|
||
|
||
{
|
||
|
||
###### interface
|
||
|
||
options = {
|
||
|
||
services.oidentd.enable = mkOption {
|
||
default = false;
|
||
type = types.bool;
|
||
description = ''
|
||
Whether to enable ‘oidentd’, an implementation of the Ident
|
||
protocol (RFC 1413). It allows remote systems to identify the
|
||
name of the user associated with a TCP connection.
|
||
'';
|
||
};
|
||
|
||
};
|
||
|
||
|
||
###### implementation
|
||
|
||
config = mkIf config.services.oidentd.enable {
|
||
systemd.services.oidentd = {
|
||
after = [ "network.target" ];
|
||
wantedBy = [ "multi-user.target" ];
|
||
serviceConfig.Type = "forking";
|
||
script = "${pkgs.oidentd}/sbin/oidentd -u oidentd -g nogroup";
|
||
};
|
||
|
||
users.users.oidentd = {
|
||
description = "Ident Protocol daemon user";
|
||
group = "oidentd";
|
||
uid = config.ids.uids.oidentd;
|
||
};
|
||
|
||
users.groups.oidentd.gid = config.ids.gids.oidentd;
|
||
|
||
};
|
||
|
||
}
|