summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorLuke Clifton <ltclifton@gmail.com>2014-12-28 13:23:10 +0800
committerLuke Clifton <ltclifton@gmail.com>2014-12-28 13:23:10 +0800
commit5866a9df035f8cbfe05379e771793ff493517389 (patch)
treeb78a0187a2575671e5b41b4d75165f57a5fea6bf /nixos
parentfabcc2cf7b98608424da4d2031f826af88b547a2 (diff)
downloadnixlib-5866a9df035f8cbfe05379e771793ff493517389.tar
nixlib-5866a9df035f8cbfe05379e771793ff493517389.tar.gz
nixlib-5866a9df035f8cbfe05379e771793ff493517389.tar.bz2
nixlib-5866a9df035f8cbfe05379e771793ff493517389.tar.lz
nixlib-5866a9df035f8cbfe05379e771793ff493517389.tar.xz
nixlib-5866a9df035f8cbfe05379e771793ff493517389.tar.zst
nixlib-5866a9df035f8cbfe05379e771793ff493517389.zip
added group
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/btsync.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/btsync.nix b/nixos/modules/services/networking/btsync.nix
index f1bf5a5e3f9c..da8564774e6a 100644
--- a/nixos/modules/services/networking/btsync.nix
+++ b/nixos/modules/services/networking/btsync.nix
@@ -249,6 +249,10 @@ in
       group           = "btsync";
     };
 
+    users.extraGroups = [
+      { name = "btsync";
+      }];
+
     systemd.services.btsync = with pkgs; {
       description = "Bittorrent Sync Service";
       wantedBy    = [ "multi-user.target" ];