From db7efc141229fecd2ab14b2d3dbdcdea3526f67c Mon Sep 17 00:00:00 2001 From: Jakob Kukla Date: Sat, 21 Jun 2025 20:20:30 +0200 Subject: [PATCH] nixos/atticd: fix user and group documentation mixup --- nixos/modules/services/networking/atticd.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/atticd.nix b/nixos/modules/services/networking/atticd.nix index 43d66ef06238..39aef744bd7f 100644 --- a/nixos/modules/services/networking/atticd.nix +++ b/nixos/modules/services/networking/atticd.nix @@ -86,7 +86,7 @@ in user = lib.mkOption { description = '' - The group under which attic runs. + The user under which attic runs. ''; type = types.str; default = "atticd"; @@ -94,7 +94,7 @@ in group = lib.mkOption { description = '' - The user under which attic runs. + The group under which attic runs. ''; type = types.str; default = "atticd";