dotfiles/modules/dev.nix
2022-11-21 17:51:02 -05:00

37 lines
433 B
Nix

{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
# General
awscli2
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"
];
}