2023-04-14 23:51:52 +03:00
|
|
|
# cli programs should be available on servers and desktop
|
2025-01-13 00:32:27 +03:00
|
|
|
{ pkgs, ... }:
|
2023-04-14 23:51:52 +03:00
|
|
|
{
|
2024-01-11 21:19:05 +03:00
|
|
|
programs.zsh.enable = true;
|
2024-04-18 19:08:00 +03:00
|
|
|
programs.fzf = {
|
|
|
|
fuzzyCompletion = true;
|
|
|
|
keybindings = true;
|
|
|
|
};
|
2024-01-11 21:19:05 +03:00
|
|
|
|
2023-04-14 23:51:52 +03:00
|
|
|
environment.systemPackages = with pkgs; [
|
2023-07-16 12:44:31 +03:00
|
|
|
ansible
|
2024-07-28 12:10:46 +03:00
|
|
|
atuin
|
2023-04-14 23:51:52 +03:00
|
|
|
bat
|
2023-12-05 22:04:12 +03:00
|
|
|
btop
|
2024-12-26 14:06:52 +03:00
|
|
|
busybox
|
2024-04-24 09:40:27 +03:00
|
|
|
cargo
|
2023-12-21 13:02:18 +03:00
|
|
|
catnip
|
2024-04-11 21:49:12 +03:00
|
|
|
cmatrix
|
2023-04-14 23:51:52 +03:00
|
|
|
coreutils
|
|
|
|
curl
|
|
|
|
dnsutils
|
|
|
|
emacs-nox
|
2023-12-03 16:48:32 +03:00
|
|
|
fd
|
2023-04-14 23:51:52 +03:00
|
|
|
findutils
|
2023-11-29 09:50:21 +03:00
|
|
|
fzf
|
2023-04-14 23:51:52 +03:00
|
|
|
gnugrep
|
2023-08-13 19:18:11 +03:00
|
|
|
gnumake
|
2023-04-14 23:51:52 +03:00
|
|
|
gnupg
|
|
|
|
imagemagick
|
|
|
|
jq
|
|
|
|
git
|
|
|
|
glances
|
|
|
|
htop
|
2023-12-01 09:41:21 +03:00
|
|
|
lazygit
|
2025-01-14 17:50:50 +03:00
|
|
|
lazydocker
|
2023-11-03 11:09:19 +03:00
|
|
|
lsd
|
2024-09-18 11:29:27 +03:00
|
|
|
magic-wormhole
|
2023-04-14 23:51:52 +03:00
|
|
|
mc
|
|
|
|
micro
|
|
|
|
mosh
|
2023-12-21 13:02:18 +03:00
|
|
|
mpc-cli
|
2023-11-29 10:17:07 +03:00
|
|
|
mpd
|
2024-09-14 10:00:39 +03:00
|
|
|
mpv
|
2025-01-13 00:32:27 +03:00
|
|
|
mtr
|
2023-04-14 23:51:52 +03:00
|
|
|
neofetch
|
2025-01-13 00:32:27 +03:00
|
|
|
netcat-gnu
|
2024-11-27 15:38:26 +03:00
|
|
|
nixd
|
2024-12-03 12:23:25 +03:00
|
|
|
neovim
|
2024-02-15 19:25:18 +03:00
|
|
|
ollama
|
2023-04-14 23:51:52 +03:00
|
|
|
pandoc
|
2023-07-16 12:44:31 +03:00
|
|
|
pass
|
2023-06-19 15:52:25 +03:00
|
|
|
pciutils
|
2024-12-26 14:06:52 +03:00
|
|
|
pinentry-all
|
2023-12-03 16:48:32 +03:00
|
|
|
ripgrep
|
2024-04-24 09:40:27 +03:00
|
|
|
rustc
|
2023-12-01 09:41:21 +03:00
|
|
|
slides
|
2023-04-14 23:51:52 +03:00
|
|
|
starship
|
2024-03-16 20:14:36 +03:00
|
|
|
syncthing
|
2023-04-14 23:51:52 +03:00
|
|
|
tmux
|
2024-05-13 15:16:15 +03:00
|
|
|
tokei
|
2023-04-14 23:51:52 +03:00
|
|
|
tree
|
|
|
|
unzip
|
2023-06-19 15:52:25 +03:00
|
|
|
usbutils
|
2023-04-14 23:51:52 +03:00
|
|
|
wget
|
2023-06-19 15:52:25 +03:00
|
|
|
whois
|
2024-02-15 19:25:18 +03:00
|
|
|
wl-clipboard
|
2023-06-19 15:52:25 +03:00
|
|
|
wirelesstools
|
2024-07-28 12:10:46 +03:00
|
|
|
yazi
|
2023-11-29 10:17:07 +03:00
|
|
|
yt-dlp
|
2023-11-29 09:50:21 +03:00
|
|
|
zellij
|
2024-07-03 10:46:47 +03:00
|
|
|
zoxide
|
2023-04-14 23:51:52 +03:00
|
|
|
zsh-autosuggestions
|
|
|
|
];
|
|
|
|
}
|