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
This commit is contained in:
Mario Rodas 2020-09-02 04:20:00 +00:00
parent 943a6b25d7
commit a34dea283c
5 changed files with 8 additions and 8 deletions

View file

@ -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.
'';