From 196b7935157a136c167b5d8dd596f97de81628f6 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 25 Nov 2024 08:03:59 +0000 Subject: [PATCH] Fix bin path --- nix/modules/home-manager/bin.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/modules/home-manager/bin.nix b/nix/modules/home-manager/bin.nix index 11519c2..43864ae 100644 --- a/nix/modules/home-manager/bin.nix +++ b/nix/modules/home-manager/bin.nix @@ -1,9 +1,9 @@ { self, ... }: { - home.sessionPath = [ "$HOME/.local/bin" ]; + home.sessionPath = [ "$HOME/bin" ]; - home.file.".local/bin" = { - source = "${self}/nix/bin"; + home.file."bin" = { + source = "${self}/bin"; recursive = true; }; }