Robert Hensing
Robert Hensing
Absolutely. I would expect this to be as simple as changing a `str` to `either str (listOf str)`, and change a test to use it that way. I see little...
I don't really use it that way, but I guess it would be nice to have an option that does such things. Here's where the NixOS service performs `arion up`....
It seems to have been reworked without arion. Unless you're interested in re-adding it there, it seems best to remove this link.
This appears to be a problem with the docker compose package in Nixpkgs.
This could be made into an option that's forwarded to `streamLayeredImage`.
> `config.services.webserver.service.hostname` This only has a `null` default so can be set. > `onfig.services.webserver.nixos.configuration.networking.hostName` This seems to be the troublemaker. It is set to `""` unless you force it. I...
You might get away with using this option with `lib.mkForce`. Maybe it shouldn't be internal. https://github.com/hercules-ci/arion/blob/8159c4faa3502a571cf8b9347f4d4b49f35c4c9f/src/nix/modules/service/image.nix#L76-L82 It'd look like this: ```nix services.backend = { service.depends_on = [ "db" ]; build.image...
Did you find this page? https://docs.hercules-ci.com/arion/deployment What's missing?
> truly hermetic As in not having `system` as an input? Nix already guarantees an inescapable hermeticity in pure mode, which is enabled by default for flake evaluation. > you...
It's not necessarily about _wireless_ configuration, but requiring an `/etc/resolv.conf` to exist is a problem for me too. It seems that this problem could be solved in the most general...