Add built Go binaries to $PATH

This commit is contained in:
Oliver Davies 2024-10-29 18:00:00 +00:00
parent 7f2be583d4
commit 83ae12e080
2 changed files with 16 additions and 2 deletions

View file

@ -8,6 +8,8 @@
...
}:
let
inherit (pkgs) lib;
desktop-config = import ./desktop.nix {
inherit
config
@ -75,7 +77,12 @@ in
LANG = "en_GB.UTF-8";
LC_ALL = "en_GB.UTF-8";
LC_CTYPE = "en_GB.UTF-8";
PATH = "$PATH:./vendor/bin:./node_modules/.bin";
PATH = lib.concatStringsSep ":" [
"$PATH"
"$HOME/go/bin"
"./vendor/bin"
"./node_modules/.bin"
];
PULUMI_SKIP_UPDATE_CHECK = "true";
REPOS = "$HOME/Code";
RIPGREP_CONFIG_PATH = "$HOME/.config/ripgrep/config";