Bob van der Linden
Bob van der Linden
@iFreilicht I think the reason your example does not work is because the repository/directory is called `.dotfiles`. [This is currently not being matched](https://github.com/NixOS/nix/blob/16232497458ceac64b00ff81033a22b739331f91/src/libexpr/flake/url-name.cc#L9). I'm not entirely sure whether we should...
@teto is this still a problem? All older versions of manifest.json should be supported by newer versions of Nix. Nix will automatically upgrade the manifest.json if needed. It just doesn't...
@iFreilicht I think they can both be considered duplicates. I've commented in the issues.
I personally think the `operationId` has its use (unique identifier for operations). However, I think it is being misused in many cases. One tool that is misusing it is the...
What we are doing is create operationIds from classname and method name. For instance something like: `UserController.byId`. That way it is unique and human-readable. However, when we're passing the specs...
Sounds good to me. I haven't done anything with Gish in a long time, so would be great if someone wants to continue development!
I think I ran into the same bug: ``` $ cat mydotenv PGPASSWORD=someting$$something $ direnv dotenv bash mydotenv export PGPASSWORD=$'sometingsomething'; ```
Apparently `.env` files aren't being interpreted consistently between different tools. I noticed `docker compose` will expand variables, where-as nodejs (`node --env-file .env index.js`) does not. `devenv` will also expand variables....
This will be a bit hard to do cleanly in dream2nix due to the structure of Gemfile.lock. Unlike the lock files from for instance nodejs, these lock files do not...
I do like that something like `up` can become a subcommands this way. I also found that a `setup` command is often useful, which currently is a script. I also...