From fff5923686c21dd147bde62d08e9f1042deadb4f Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sat, 30 Jun 2018 01:58:35 +0200 Subject: nixos/modules: users.(extraUsers|extraGroup->users|group) --- nixos/modules/services/networking/oidentd.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nixos/modules/services/networking/oidentd.nix') diff --git a/nixos/modules/services/networking/oidentd.nix b/nixos/modules/services/networking/oidentd.nix index ba7acd87954..8cf34623ab5 100644 --- a/nixos/modules/services/networking/oidentd.nix +++ b/nixos/modules/services/networking/oidentd.nix @@ -32,13 +32,13 @@ with lib; optionalString config.networking.enableIPv6 " -a ::"; }; - users.extraUsers.oidentd = { + users.users.oidentd = { description = "Ident Protocol daemon user"; group = "oidentd"; uid = config.ids.uids.oidentd; }; - users.extraGroups.oidentd.gid = config.ids.gids.oidentd; + users.groups.oidentd.gid = config.ids.gids.oidentd; }; -- cgit 1.4.1