Robert Hensing

Results 909 comments of Robert Hensing

It worked when I tested this solution on other flakes. Which Nix version did you use? I think `fetchTree`, which loads the sources for flakes, should always allow its result...

Hi @lenianiva, sorry for the late response. `legacyPackages` can be used as a catch-all, or you could declare a custom output attribute. See https://flake.parts/define-custom-flake-attribute.html#persystem-first and https://github.com/hercules-ci/flake-parts/blob/main/modules/packages.nix I'll close this for...

_Technically_ it can't be a breaking change, because `"${null}"` doesn't evaluate anyway, and that's exactly what my old configuration ran into after I had set `darwinConfig` to `null`. Unless you...

In hindsight, I made a mistake linking it to #1462. Sorry for making things seem complicated. I encountered it more or less at the same time, but it's an independent...

I've left the message a bit more open ended. > I suppose that my worry is that it will accidentally result in a system that can’t re‐activate itself I believe...

Discussed in Nix meeting today: URL escaping should be the solution. We should probably get rid of https://github.com/NixOS/nix/blob/d46ce52fac62d2b8dbc95aeb7a31af3a2ae1a78d/src/libutil/include/nix/util/url-parts.hh#L36 or replace it with an accurate regex, if at all possible. Since...

> downloading 2GB is not nothing The way I see it, the primary user of the bloom filter would be the `cache.nixos.org` _internals_. Providing this data for others could be...

Thanks! Looks like my napkin estimate was off by quite a bit there. Let's assume it's 1 build per second, some multi-output, so let's say 3 outputs per second. At...

If you only run it for the tag, wouldn't that solve the problem?

Might passing the following environment variable work? ```bash GIT_SSH_COMMAND="ssh -i ~/.ssh/special_id_ed25519" ```