mrflos-nixos-config-fork/modules/console.nix
2024-08-09 12:41:40 +03:00

70 lines
945 B
Nix

# cli programs should be available on servers and desktop
{ pkgs, ... }:
{
programs.zsh.enable = true;
# programs.fzf = {
# fuzzyCompletion = true;
# keybindings = true;
# };
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
ansible
atuin
bat
btop
cargo
catnip
cmatrix
coreutils
curl
dnsutils
emacs-nox
fd
findutils
fzf
gnugrep
gnumake
gnupg
imagemagick
jq
git
glances
htop
lazygit
lsd
mc
micro
mosh
mpc-cli
mpd
neofetch
neovim
ollama
pandoc
pass
pciutils
#pinentry
ripgrep
rustc
slides
starship
syncthing
tmux
tokei
tree
unzip
#usbutils
wget
whois
wl-clipboard
yazi
#wirelesstools
yt-dlp
zellij
zoxide
zsh-autosuggestions
];
}