From 8f7ba016130492450009ef0e45612f72428da05c Mon Sep 17 00:00:00 2001 From: Whovian9369 Date: Sat, 29 Jun 2024 05:41:17 -0400 Subject: [PATCH] Add `$HOME/bin` to user path. --- home/variables.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/variables.nix b/home/variables.nix index 96cf63e..f851266 100644 --- a/home/variables.nix +++ b/home/variables.nix @@ -12,4 +12,8 @@ ITCHIO_API_KEY = "\$(cat ${config.age.secrets."itchy".path})"; ELIXIRE_API_KEY = "\$(cat ${config.age.secrets."elixire".path})"; }; + + home.sessionPath = [ + "$HOME/bin" + ]; }