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 b378f6bf91
commit ee65d9e5f3
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

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