Domen Kožar

Results 1506 comments of Domen Kožar

Mixing root and user permissions is definitely going to break devenv, just as any other application. Reopen please if there's another cause for this.

Duplicates https://github.com/cachix/devenv/issues/785

@k3yss can you take a look?

This looks like it was GitHub rate limiting.

We could have a setting that prevents installing into git hooks, but you can still run `pre-commit run -a`.

The issue right now is that we've reached maximum number of jobs on github actions :(

I was thinking to add `overlays` to `devenv.yaml` to support this one.

You can do this using `devenv.yaml`: ```yaml inputs: subflake: url: path:./subflake overlays: - default ``` and in `subflake/flake.nix`: ```nix { outputs = { ... }: { overlays.default = self: super:...