dotfiles/modules/dev.nix

16 lines
234 B
Nix
Raw Normal View History

2022-08-27 10:57:48 -04:00
{ config, lib, pkgs, ... }:
{
home.file.".ghci".text = ''
:set prompt "λ> "
'';
home.sessionPath = [
"$HOME/.cargo/bin"
"$HOME/.deno/bin"
"$HOME/.emacs.d/bin"
"$HOME/.go/bin"
"$HOME/.local/bin"
];
}