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 5cb2ff6054
commit b8c77fa7e3
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -125,9 +125,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;
); };
}; };
}; };
}; };