Robert Hensing

Results 909 comments of Robert Hensing

@LiGoldragon Thank you for your kind message. You are free to have your own beliefs, but from one person to another, I highly recommend not to use discussions like this...

This error is emitted by docker compose. Docker-compose-style images have the same behavior as in docker compose, so they _can_ go out of date. To rebuild docker-style images, run: arion...

A few hooks pull extra settings from options named `settings..foo`, so you could make the choice of nix formatter configurable. That's still duplicate configuration, but at least it'd work for...

The `.pre-commit-config.yaml` symlink produced by the shellHook script is already a GC root. Does it not work for you? EDIT: WRONG

I wrongly assumed the symlink was a gc root. I didn't find a good solution for creating one. See https://github.com/NixOS/nix/issues/7138

Mine don't get GC-ed because lorri creates gc roots for the shells that reference them. Lorri shouldn't be a requirement though.

Found two problems - https://github.com/haskell/process/issues/107 and - we'll want more than SIGTERM https://github.com/haskell/process/blob/25613c7d01f6fe5ee2f75fd39db898942cbfb404/cbits/posix/runProcess.c#L202

`_module.args` is older than `specialArgs`, so you can already use it. https://github.com/NixOS/nixpkgs/pull/8204 This should work ``` { /* network attrset */ defaults = { /* a NixOS module */ _module.args.inputs...

You could use `network.defaults` to set `nixpkgs.pkgs` (or similar) at the NixOS level. You can even memoize the nixpkgs invocation by binding it to a top-level `let` binding in your...