nixos-config/home/env.nix

7 lines
139 B
Nix
Raw Normal View History

2022-04-10 11:54:58 +02:00
{config, ...}: {
2021-04-23 22:05:27 +02:00
home.sessionPath = [
"${config.home.homeDirectory}/.cargo/bin"
2021-05-04 01:27:21 +02:00
"${config.home.homeDirectory}/.local/bin"
2021-04-23 22:05:27 +02:00
];
}