home-manager/shell/default.nix
2025-05-02 07:01:55 +02:00

32 lines
403 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
devenv
difftastic
dust
htop
jq
nh
sshfs
unzip
xclip
llm
];
imports = [
./atuin.nix
./bat.nix
./btop.nix
./carapace.nix
./direnv.nix
./eza.nix
./fzf.nix
./ripgrep.nix
./rsync.nix
./shell_aliases.nix
./starship.nix
./tree.nix
./zoxide.nix
./zsh.nix
];
}