Profpatsch

Results 462 comments of Profpatsch

It maybe does in this example, but it certainly doesn’t in a case where it happens after more than 6 log linse.

Or rather, the logic is even more confused than that: ``` > nix-shell -E 'with import {}; mkShell { buildDepends = [ (hello.overrideAttrs (old: { installPhase = old.installPhase or ""...

This seems to have broken our github runner’s access to the docker daemon: ``` Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post "http://%2Fvar%2Frun%2Fdocker.sock/v1.24/auth":...

our config states: ``` systemd.services.github-runner.serviceConfig.SupplementaryGroups = [ "docker" ]; ``` yet it stopped working

I switched it to ``` services.github-runner.serviceOverrides.SupplementaryGroups = [ "docker" ]; ``` and now it seems to work.

Ah, I understand how `parallel` can only produce one output per item; one is kind of trapped in `IO` anyway, since `withAsync` enforces it. What would you use for the...

``` service-checker.hs: out/scripts/information: openFile: does not exist (No such file or directory) ``` Going with a) I think it should be sufficient to link to the System.IO function it calls.

Okay. I wasn’t aware of that. Maybe that is missing somewhere in the documentation? > Think of turtle more as a stepping stone to introduce beginners to the rest of...