Compare commits

..

2 commits

Author SHA1 Message Date
ee65d9e5f3
wrap application resources to match the input of apply 2025-08-25 17:24:42 +02:00
b378f6bf91
fix a bug of mismatching names in data model test
matches the name of `shell` to `operator-environment`.
2025-08-25 17:23:27 +02:00

View file

@ -126,9 +126,9 @@ in
nixos.module = 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 resources = lib.filterAttrs (_name: value: value ? login-shell) requests;
); };
}; };
}; };
}; };