home-manager/shell/default.nix

30 lines
374 B
Nix
Raw Normal View History

2024-07-10 11:21:28 +00:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
difftastic
2024-09-16 07:11:39 +00:00
dust
2024-07-10 11:21:28 +00:00
htop
jq
2024-10-24 06:29:29 +00:00
nh
2024-07-10 11:21:28 +00:00
unzip
xclip
];
imports = [
2024-07-30 05:51:43 +00:00
./atuin.nix
2024-07-10 11:21:28 +00:00
./bat.nix
2024-09-23 07:54:46 +00:00
./btop.nix
2024-07-10 11:21:28 +00:00
./carapace.nix
./direnv.nix
./eza.nix
./fzf.nix
./ripgrep.nix
./rsync.nix
./shell_aliases.nix
./starship.nix
./tree.nix
./zoxide.nix
./zsh.nix
];
}