summary refs log tree commit diff
path: root/nixos/modules/services/networking/oidentd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/networking/oidentd.nix')
-rw-r--r--nixos/modules/services/networking/oidentd.nix4
1 files changed, 2 insertions, 2 deletions
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;
 
   };