Robert Hensing

Results 909 comments of Robert Hensing

Somewhat off topic, but relevant is to avoid `import` > ```nix > (import ./01-base) > ``` It's better to do just pass `./01-base`, because `import` drops the file name. Errors...

That would be caused by https://github.com/hercules-ci/flake-parts/blob/c621e8422220273271f52058f618c94e405bb0f5/extras/flakeModules.nix#L39 To solve this problem, we'd have to either make that behavior optional, or remove it entirely. By making it optional in an automatic way,...

Thank you for writing this. Unfortunately I believe I've thought within the framework of the module system too much. [Dogfooding](https://github.com/hercules-ci/flake-parts/issues/290) is still a UX issue, and I think it's worth...

Discussed in today's Nix meeting So far we're a bit puzzled by this, so we'd like to know more: - Is this repeatable? - Which installation method from the linked...

Fortunately this solves the last occurrence of `filterAttrs` that actually processes any kind of input data, indicating it's the last strictness problem of its kind :tada: The last remaining `filterAttrs`...

[Rendered docs](https://6835c685fddf71068a32b552--sprightly-cassata-33312f.netlify.app/options/flake-parts-touchup.html)

@srid I see. Auto-wiring controls can have a similar effect, but their effect is on the internal option values, whereas this is specifically for flake outputs. They also have unique...

Issues like #10158 will still happen in a use case like `nixos-enter`. I don't think we can get rid of the non-daemon use case completely, and by switching to daemon...

Bypassing the daemon is also useful when trying out a build feature, such as described here https://github.com/NixOS/nixpkgs/issues/318013#issuecomment-2156819571.

Relevant Nixpkgs PR - https://github.com/NixOS/nixpkgs/pull/415701