summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorДанило Глинський (Danylo Hlynskyi) <abcz2.uprola@gmail.com>2016-05-12 18:01:17 +0300
committerДанило Глинський (Danylo Hlynskyi) <abcz2.uprola@gmail.com>2016-05-12 18:01:17 +0300
commitbc2fe9f2cd3144bfe061801b8cb13b9ca60a1542 (patch)
tree94903e80dd6d0815beafcdaec5bd117d918a1b5a /nixos/modules/services
parent3f39492bf5e568d3134c210a88cdf8242aad7b36 (diff)
downloadnixlib-bc2fe9f2cd3144bfe061801b8cb13b9ca60a1542.tar
nixlib-bc2fe9f2cd3144bfe061801b8cb13b9ca60a1542.tar.gz
nixlib-bc2fe9f2cd3144bfe061801b8cb13b9ca60a1542.tar.bz2
nixlib-bc2fe9f2cd3144bfe061801b8cb13b9ca60a1542.tar.lz
nixlib-bc2fe9f2cd3144bfe061801b8cb13b9ca60a1542.tar.xz
nixlib-bc2fe9f2cd3144bfe061801b8cb13b9ca60a1542.tar.zst
nixlib-bc2fe9f2cd3144bfe061801b8cb13b9ca60a1542.zip
typo in authorizedKeysFiles
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/networking/ssh/sshd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix
index 5971a5a250d3..a464733a6a03 100644
--- a/nixos/modules/services/networking/ssh/sshd.nix
+++ b/nixos/modules/services/networking/ssh/sshd.nix
@@ -195,7 +195,7 @@ in
       authorizedKeysFiles = mkOption {
         type = types.listOf types.str;
         default = [];
-        description = "Files from with authorized keys are read.";
+        description = "Files from which authorized keys are read.";
       };
 
       extraConfig = mkOption {