dotfiles/modules/dev.nix

22 lines
309 B
Nix
Raw Permalink 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 "λ> "
'';
2022-08-27 10:57:48 -04:00
file.".npmrc".text = ''
prefix = ''${HOME}/.local
'';
sessionPath = [
"$HOME/.cargo/bin"
"$HOME/.deno/bin"
"$HOME/.config/emacs/bin"
"$HOME/.go/bin"
"$HOME/.local/bin"
];
};
2022-08-27 10:57:48 -04:00
}