Files
alo-cluster/home/packages.nix
2025-01-19 14:34:18 +00:00

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
]);
}