dotfiles/modules/dev.nix

16 lines
214 B
Nix
Raw Normal View History

2023-07-26 13:04:43 -04:00
_:
2022-08-27 10:57:48 -04:00
{
home.file.".ghci".text = ''
:set prompt "λ> "
'';
home.sessionPath = [
"$HOME/.cargo/bin"
"$HOME/.deno/bin"
2023-09-01 10:24:50 -04:00
"$HOME/.config/emacs/bin"
2022-08-27 10:57:48 -04:00
"$HOME/.go/bin"
"$HOME/.local/bin"
];
}