about summary refs log tree commit diff
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-04-14 21:16:14 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-04-14 21:16:14 +0200
commit940120a711930eab13883f56c677cf2a4580b14e (patch)
tree835175b9b57713987c7fa9fa3fc7e07b5e5badb9
parent394e64e4fbc7ff4f77fd241d5811acf2bdd5a998 (diff)
downloadnixlib-940120a711930eab13883f56c677cf2a4580b14e.tar
nixlib-940120a711930eab13883f56c677cf2a4580b14e.tar.gz
nixlib-940120a711930eab13883f56c677cf2a4580b14e.tar.bz2
nixlib-940120a711930eab13883f56c677cf2a4580b14e.tar.lz
nixlib-940120a711930eab13883f56c677cf2a4580b14e.tar.xz
nixlib-940120a711930eab13883f56c677cf2a4580b14e.tar.zst
nixlib-940120a711930eab13883f56c677cf2a4580b14e.zip
nixos/taskserver/doc: Improve example org name
Suggested by @nbp:

"Choose a better organization name in this example, such that it is less
confusing. Maybe something like my-company"

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
-rw-r--r--nixos/modules/services/misc/taskserver/doc.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/services/misc/taskserver/doc.xml b/nixos/modules/services/misc/taskserver/doc.xml
index 15125b1411bd..48591129264a 100644
--- a/nixos/modules/services/misc/taskserver/doc.xml
+++ b/nixos/modules/services/misc/taskserver/doc.xml
@@ -102,11 +102,11 @@
   services.taskserver.enable = true;
   services.taskserver.fqdn = "server";
   services.taskserver.listenHost = "::";
-  services.taskserver.organisations.NixOS.users = [ "alice" ];
+  services.taskserver.organisations.my-company.users = [ "alice" ];
 }
 </screen>
-      This creates an organisation called <literal>NixOS</literal> with the user
-      <literal>alice</literal>.
+      This creates an organisation called <literal>my-company</literal> with the
+      user <literal>alice</literal>.
     </para>
 
     <para>
@@ -114,7 +114,7 @@
       machine <literal>alicebox</literal>, all we need to do is something like
       this:
 <screen>
-$ ssh server nixos-taskserver user export NixOS alice | sh
+$ ssh server nixos-taskserver user export my-company alice | sh
 </screen>
       Of course, if no SSH daemon is available on the server you can also copy
       &amp; paste it directly into a shell.