Files
alo-cluster/home/packages.nix

24 lines
325 B
Nix

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