fix a bug of mismatching names in data model test

matches the name of `shell` to `operator-environment`.
This commit is contained in:
Kiara Grouwstra 2025-08-25 17:14:45 +02:00
parent 72ba1726b7
commit 54b3b9ea50
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -125,7 +125,7 @@ in
nixos.module =
{ ... }:
{
users.users = config.resources.shell.login-shell.apply (
users.users = config.resources.operator-environment.login-shell.apply (
lib.filterAttrs (_name: value: value ? login-shell) requests
);
};