wrap application resources to match the input of apply

This commit is contained in:
Kiara Grouwstra 2025-08-25 17:18:22 +02:00
parent c5a8f04813
commit 995b984721
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -123,9 +123,9 @@ in
nixos.module = nixos.module =
{ ... }: { ... }:
{ {
users.users = config.resources."operator-environment".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;
); };
}; };
}; };
} }