dotfiles/modules/dev.nix
2022-09-07 20:15:00 -04:00

36 lines
421 B
Nix

{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
# General
cmake
drone-cli
# Git
git
gh
mr
tea
# Nix
cachix
niv
nixfmt
nixpkgs-fmt
rnix-lsp
];
home.file.".ghci".text = ''
:set prompt "λ> "
'';
home.sessionPath = [
"$HOME/.cargo/bin"
"$HOME/.deno/bin"
"$HOME/.emacs.d/bin"
"$HOME/.go/bin"
"$HOME/.local/bin"
];
}