forked from Fediversity/Fediversity
wrap application resources to match the input of apply
This commit is contained in:
parent
c5a8f04813
commit
995b984721
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
);
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue