From 4b827fb7ffa3da1c473d5a364aeeeeb07b1bcdc7 Mon Sep 17 00:00:00 2001 From: Ricard Illa Date: Thu, 24 Aug 2023 10:01:36 +0200 Subject: [PATCH] feat: added $HOME/bin to echidna'S PATH --- hosts/echidna/home.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/echidna/home.nix b/hosts/echidna/home.nix index 5539b47..a296332 100644 --- a/hosts/echidna/home.nix +++ b/hosts/echidna/home.nix @@ -26,6 +26,10 @@ outputs.homeManagerModules.rss ]; + home.sessionPath = [ + "$HOME/.local/bin" + ]; + home.packages = with pkgs; [ wl-clipboard libnotify ]; home.stateVersion = "23.05";