23 lines
315 B
Nix
23 lines
315 B
Nix
{ pkgs }:
|
|
{
|
|
packages =
|
|
with pkgs;
|
|
[
|
|
direnv
|
|
fzf
|
|
git
|
|
home-manager
|
|
mosh
|
|
python312Packages.ipython
|
|
ripgrep
|
|
tmux
|
|
zsh
|
|
]
|
|
++ (with pkgs.fishPlugins; [
|
|
pure
|
|
# don't add failed commands to history
|
|
sponge
|
|
transient-fish
|
|
]);
|
|
}
|