No, I didn‘t grasp that the colmena deployment process is entirely unrelated to the „nixos-rebuild approach. Now that makes sense. But it also means that I should somehow collect the /etc/nixos/configuration.nix plus imported files and base my colmenas input on that, no? Is there maybe a clever workflow to do that? Or is there a better approach?
i can build this configuration with nixos-rebuild but colmena throws infinite recursion, is there a way to fix it?
{
inputs,
...
}: {
imports = [
# this file configures some third party module and the imported function requires inputs as a consequence
(import "${inputs.my-flake}/modules-profiles/some-app-configs/default-with-inputs.nix")
];
… while evaluating the module argument `inputs' error: infinite recursion encountered
i can build this nixos host configuration with nixos-rebuild but colmena throws infinite recursion, is there a way to fix it?
{
inputs,
...
}: {
imports = [
# this file configures some third party module and the imported function requires inputs as a consequence
(import "${inputs.my-flake}/modules-profiles/some-app-configs/default-with-inputs.nix")
];
… while evaluating the module argument `inputs' error: infinite recursion encountered