summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-03-07 21:42:26 +0100
committerRobin Gloster <mail@glob.in>2016-03-07 21:42:26 +0100
commitbcfb3dd9c605bf68730757cc60d01dec91f009f2 (patch)
tree5749daf7b7428f4113b671fc3c21107b2a0a127a /nixos
parent99a27e7137a232117155e1d8f368761559bc2601 (diff)
parent896a70aa52ad1cd912d07859dfb69db2bcc24181 (diff)
downloadnixlib-bcfb3dd9c605bf68730757cc60d01dec91f009f2.tar
nixlib-bcfb3dd9c605bf68730757cc60d01dec91f009f2.tar.gz
nixlib-bcfb3dd9c605bf68730757cc60d01dec91f009f2.tar.bz2
nixlib-bcfb3dd9c605bf68730757cc60d01dec91f009f2.tar.lz
nixlib-bcfb3dd9c605bf68730757cc60d01dec91f009f2.tar.xz
nixlib-bcfb3dd9c605bf68730757cc60d01dec91f009f2.tar.zst
nixlib-bcfb3dd9c605bf68730757cc60d01dec91f009f2.zip
Merge pull request #13748 from zohl/misc
a few descriptions fixups
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/config/krb5.nix2
-rw-r--r--nixos/modules/services/misc/nix-daemon.nix12
-rw-r--r--nixos/modules/services/system/kerberos.nix4
3 files changed, 8 insertions, 10 deletions
diff --git a/nixos/modules/config/krb5.nix b/nixos/modules/config/krb5.nix
index d2198e4ac1ae..b845ef69a753 100644
--- a/nixos/modules/config/krb5.nix
+++ b/nixos/modules/config/krb5.nix
@@ -32,7 +32,7 @@ in
 
       kdc = mkOption {
         default = "kerberos.mit.edu";
-        description = "Kerberos Domain Controller.";
+        description = "Key Distribution Center";
       };
 
       kerberosAdminServer = mkOption {
diff --git a/nixos/modules/services/misc/nix-daemon.nix b/nixos/modules/services/misc/nix-daemon.nix
index cf2ee20801ab..78f0cd18040d 100644
--- a/nixos/modules/services/misc/nix-daemon.nix
+++ b/nixos/modules/services/misc/nix-daemon.nix
@@ -257,13 +257,11 @@ in
         type = types.bool;
         default = true;
         description = ''
-          If enabled, Nix will only download binaries from binary
-          caches if they are cryptographically signed with any of the
-          keys listed in
-          <option>nix.binaryCachePublicKeys</option>. If disabled (the
-          default), signatures are neither required nor checked, so
-          it's strongly recommended that you use only trustworthy
-          caches and https to prevent man-in-the-middle attacks.
+          If enabled (the default), Nix will only download binaries from binary caches if
+          they are cryptographically signed with any of the keys listed in
+          <option>nix.binaryCachePublicKeys</option>. If disabled, signatures are neither
+          required nor checked, so it's strongly recommended that you use only
+          trustworthy caches and https to prevent man-in-the-middle attacks.
         '';
       };
 
diff --git a/nixos/modules/services/system/kerberos.nix b/nixos/modules/services/system/kerberos.nix
index e0c3f95c3ccc..347302c6090d 100644
--- a/nixos/modules/services/system/kerberos.nix
+++ b/nixos/modules/services/system/kerberos.nix
@@ -46,7 +46,7 @@ in
       };
 
     systemd.services.kdc = {
-      description = "Kerberos Domain Controller daemon";
+      description = "Key Distribution Center daemon";
       wantedBy = [ "multi-user.target" ];
       preStart = ''
         mkdir -m 0755 -p ${stateDir}
@@ -55,7 +55,7 @@ in
     };
 
     systemd.services.kpasswdd = {
-      description = "Kerberos Domain Controller daemon";
+      description = "Kerberos Password Changing daemon";
       wantedBy = [ "multi-user.target" ];
       script = "${heimdal}/sbin/kpasswdd";
     };