You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
trace: warning: In file /nix/store/kqx95nfx4wafnzxkiyjnr6xdj9mfpsdn-nixos-20.03.tar.gz/nixos/modules/config/users-groups.nix
a list is being assigned to the option config.users.users.
This will soon be an error as type loaOf is deprecated.
See https://github.com/NixOS/nixpkgs/pull/63103 for more information.
Do
users.users =
{ reverse-proxy = {...}; }
instead of
users.users =
[ { name = "reverse-proxy"; ...} ]
trace: warning: In file /nix/store/kqx95nfx4wafnzxkiyjnr6xdj9mfpsdn-nixos-20.03.tar.gz/nixos/modules/config/users-groups.nix
a list is being assigned to the option config.users.groups.
This will soon be an error as type loaOf is deprecated.
See https://github.com/NixOS/nixpkgs/pull/63103 for more information.
Do
users.groups =
{ reverse-proxy = {...}; }
instead of
users.groups =
[ { name = "reverse-proxy"; ...} ]
But in 20.09 the old type was removed and this results in an error.
To reproduce, set nixcloud.reverse-proxy.enable = true
edit: same error in other places later in the evaluation
The text was updated successfully, but these errors were encountered:
fgaz
changed the title
loaOf in users.users and users.groups makes nixcloud-webservices throw an error in 20.09
20.09: loaOf in users.users and users.groups makes nixcloud-webservices throw an error
Nov 5, 2020
In 20.03 it just gave a warning:
But in 20.09 the old type was removed and this results in an error.
To reproduce, set
nixcloud.reverse-proxy.enable = true
edit: same error in other places later in the evaluation
The text was updated successfully, but these errors were encountered: