diff options
| author | Mario Rodas <marsam@users.noreply.github.com> | 2020-09-02 04:20:00 +0000 |
|---|---|---|
| committer | Mario Rodas <marsam@users.noreply.github.com> | 2020-09-02 04:20:00 +0000 |
| commit | a34dea283cba40cdc048eb0e33f893bdf7db5867 (patch) | |
| tree | 7525f6901f4c228c381c0da309600e49c81ac3a7 /modules/users/default.nix | |
| parent | 943a6b25d7be58e45df9817139db2cb3808d3006 (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/users/default.nix')
| -rw-r--r-- | modules/users/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/users/default.nix b/modules/users/default.nix index 6605a28..bb075ec 100644 --- a/modules/users/default.nix +++ b/modules/users/default.nix @@ -49,13 +49,13 @@ in }; users.groups = mkOption { - type = types.loaOf (types.submodule group); + type = types.attrsOf (types.submodule group); default = {}; description = "Configuration for groups."; }; users.users = mkOption { - type = types.loaOf (types.submodule user); + type = types.attrsOf (types.submodule user); default = {}; description = "Configuration for users."; }; |
