home-manager/shell/default.nix

30 lines
374 B
Nix
Raw Normal View History

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