diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-01-13 21:06:59 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-01-13 21:06:59 +0100 |
commit | ec1f3cc000bb18e34f208c79655184043fe208d5 (patch) | |
tree | cc5363f2b77f43c5d07563b90536c4cb88a21cc8 /hosts/home.nix | |
parent | Update (diff) | |
download | nixos-config-ec1f3cc000bb18e34f208c79655184043fe208d5.tar.gz nixos-config-ec1f3cc000bb18e34f208c79655184043fe208d5.tar.bz2 nixos-config-ec1f3cc000bb18e34f208c79655184043fe208d5.zip |
Home: Add cargo bin to session path
Diffstat (limited to 'hosts/home.nix')
-rw-r--r-- | hosts/home.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index ebe7318..afee3af 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -374,6 +374,10 @@ "./Images/Wallpapers".source = inputs.wallpapers; }; + home.sessionPath = [ + "/home/${user}/.cargo/bin" + ]; + # For disabling the automatic creation of $HOME/Desktop xdg.userDirs.desktop = "$HOME/"; |