summaryrefslogtreecommitdiff
path: root/modules/programs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-09-02 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2020-09-02 04:20:00 +0000
commita34dea283cba40cdc048eb0e33f893bdf7db5867 (patch)
tree7525f6901f4c228c381c0da309600e49c81ac3a7 /modules/programs
parent943a6b25d7be58e45df9817139db2cb3808d3006 (diff)
Remove deprecated types.loaOf
types.loaOf has been deprecated for a long time and is now in the process of removal. See: https://github.com/NixOS/nixpkgs/pull/96042
Diffstat (limited to 'modules/programs')
-rw-r--r--modules/programs/ssh/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/programs/ssh/default.nix b/modules/programs/ssh/default.nix
index 2a15a8b..af2d76b 100644
--- a/modules/programs/ssh/default.nix
+++ b/modules/programs/ssh/default.nix
@@ -54,7 +54,7 @@ in
programs.ssh.knownHosts = mkOption {
default = {};
- type = types.loaOf (types.submodule host);
+ type = types.attrsOf (types.submodule host);
description = ''
The set of system-wide known SSH hosts.
'';