home-manager/shell/default.nix

27 lines
343 B
Nix
Raw Normal View History

2024-07-10 11:21:28 +00:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
difftastic
htop
jq
unzip
xclip
];
imports = [
2024-07-30 05:51:43 +00:00
./atuin.nix
2024-07-10 11:21:28 +00:00
./bat.nix
./carapace.nix
./direnv.nix
./eza.nix
./fzf.nix
./ripgrep.nix
./rsync.nix
./shell_aliases.nix
./starship.nix
./tree.nix
./zoxide.nix
./zsh.nix
];
}