Gregor Pogačnik
Gregor Pogačnik
Some sort of find / scp / rsync combo is not good , because I also have some `tests.nix` that is is not referenced through `configuration.nix`. And then `digital-ocean-image.nix` is...
I came up with this "contraption" 🙂 ``` { pkgs ? import {}, ... }: let lib = pkgs.lib; resolveOne = file: let p = pkgs.callPackage file {}; in lib.filter...
Now I solved this through (sharing in case anybody else needs it): ``` data "external" "do_network" { program = ["${path.module}/do_network.sh"] query = { id = ... token = ... }...
So I've solved this by replacing: ``` pythonPackages = import "${toString pkgs.path}/pkgs/top-level/python-packages.nix" { inherit pkgs; inherit (pkgs) stdenv; python = pkgs.python3; }; ``` with: ``` pythonPackages' = import "${toString pkgs.path}/pkgs/top-level/python-packages.nix"...
> The behavior is the same as the original MR: If there is no `SOPS_AGE_SSH_PRIVATE_KEY` env variable given, sops will check `~/.ssh/id_ed25519` and fallbacks to `~/.ssh/id_rsa`. > > Would love...
I have the same issue with GoLand (and also IntelliJ IDEA). Looked at the code: ```fun importDirenv(envrcFile: VirtualFile) { val process = executeDirenv(envrcFile, "export", "json") if (process.waitFor() != 0) {...
Low hanging fruit theory - that `direnv` somehow changed the API which broke the integration can be dismissed I guess (see related issue). My next theory / question is regarding...
While working on a minimal reproducible example I figured out what I said before isn't completely true - the snippets are present in the `nginx.conf` I just overlooked them since...