Results 269 comments of oddlama

RS would also be a bad choice since everything except `/` and `\0` are valid characters in filenames. To be completely robust I'd suggest using NUL as the delimiter which...

I don't think I can agree completely. You are right in that RS would of course be better than TAB, but considering that `\0` can never break and `RS` can...

I can reproduce this with a 100% hit rate on my test instance on commit 2fb85f4a164e588bf70f65b107081bbb4834067b (didn't test any others yet). **EDIT**: From discord: Seems to be caused by (too)...

> Colmena will copy outputs that already exist Awesome, if this is guaranteed then this is a good workaround for me personally. Not sure if a separate mechanism might be...

The issue is that colmena runs all commands without allocating a pty first. In my [fork](https://github.com/oddlama/colmena) I've replaced `nix-build` with `nix build` and wrapped it in a faketty (quick and...

Have a look at this old PR https://github.com/ryantm/agenix/pull/134 in which I tried the exact same thing just to arrive at the conclusion that this is probably not what I wanted.

Rebased on main. As stated before, currently this only causes agenix to emit an error. Deleting the directory before linking could also be a desirable option to ensure agenix takes...

Hi! I'm very humbled that you'd attempt to use autokernel for the NixOS build process. Sorry for the inconveniences, the integration tests are currently a little rough around the edges....

> Ah, you want that shebang to be `#!/usr/bin/env bash`, which guarantees it works everywhere. True, that's probably a better way to do it. Do you know what nixos is...