summary refs log tree commit diff
path: root/nixos/modules/services/networking/resilio.nix
diff options
context:
space:
mode:
authorJesper Geertsen Jonsson <yesbox@users.noreply.github.com>2020-03-02 17:06:26 +0100
committerAustin Seipp <aseipp@pobox.com>2020-03-19 11:25:56 -0500
commit02c2c864d1d1c1ec792e51e148636e599edea9cf (patch)
treef219a1dbe00962ada702b6e7551a2716f749d59a /nixos/modules/services/networking/resilio.nix
parent4726a8f2d4d6db0565c634551e59d4510af8ef6e (diff)
downloadnixpkgs-02c2c864d1d1c1ec792e51e148636e599edea9cf.tar
nixpkgs-02c2c864d1d1c1ec792e51e148636e599edea9cf.tar.gz
nixpkgs-02c2c864d1d1c1ec792e51e148636e599edea9cf.tar.bz2
nixpkgs-02c2c864d1d1c1ec792e51e148636e599edea9cf.tar.lz
nixpkgs-02c2c864d1d1c1ec792e51e148636e599edea9cf.tar.xz
nixpkgs-02c2c864d1d1c1ec792e51e148636e599edea9cf.tar.zst
nixpkgs-02c2c864d1d1c1ec792e51e148636e599edea9cf.zip
resilio: fix a list being assigned to the option config.users.groups
Diffstat (limited to 'nixos/modules/services/networking/resilio.nix')
-rw-r--r--nixos/modules/services/networking/resilio.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/resilio.nix b/nixos/modules/services/networking/resilio.nix
index 9b25aa57583..e74e03fc0b0 100644
--- a/nixos/modules/services/networking/resilio.nix
+++ b/nixos/modules/services/networking/resilio.nix
@@ -244,7 +244,7 @@ in
       group           = "rslsync";
     };
 
-    users.groups = [ { name = "rslsync"; } ];
+    users.groups.rslsync = {};
 
     systemd.services.resilio = with pkgs; {
       description = "Resilio Sync Service";