From f5dd7f0e93b29f9fe1abc8d30368ff61b4a71684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Tue, 3 Dec 2024 21:10:01 -0500 Subject: [PATCH] Add ~/.local/bin to script path --- configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configuration.nix b/configuration.nix index 1dde801..65cc44b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -86,6 +86,9 @@ ]; environment.pathsToLink = [ "/share/fish" ]; + # Add ~/.local/bin/ to $PATH + environment.localBinInPath = true; + # Needed for Slack but probably helps other stuff too. # See https://wiki.nixos.org/wiki/Slack environment.sessionVariables.NIXOS_OZONE_WL = "1";