home: setup additional paths

This commit is contained in:
Antoine Martin 2021-04-23 22:05:27 +02:00
parent ba2ccb559c
commit e16eb29345
2 changed files with 8 additions and 0 deletions

7
home/env.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, ... }:
{
home.sessionPath = [
"${config.xdg.configHome}/emacs/bin"
"${config.home.homeDirectory}/.cargo/bin"
];
}