Update lean 4.15 (#373564)
[NixPkgs.git] / nixos / modules / system / boot / systemd / userdbd.nix
blob0161a7c2c68157f66146dfee8f8e4b02a6496c3c
1 { config, lib, ... }:
3 let
4   cfg = config.services.userdbd;
5 in
7   options.services.userdbd.enable = lib.mkEnableOption ''
8     the systemd JSON user/group record lookup service
9   '';
10   config = lib.mkIf cfg.enable {
11     systemd.additionalUpstreamSystemUnits = [
12       "systemd-userdbd.socket"
13       "systemd-userdbd.service"
14     ];
16     systemd.sockets.systemd-userdbd.wantedBy = [ "sockets.target" ];
17   };