nix-dotfiles/users/richie/home/programs.nix

57 lines
730 B
Nix
Raw Normal View History

2024-04-14 22:23:37 -04:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
# cli
bat
btop
2024-04-17 18:50:59 -04:00
eza
2024-04-14 22:23:37 -04:00
git
gnupg
ncdu
neofetch
ripgrep
sops
starship
2024-04-17 18:50:59 -04:00
tmux
2024-04-14 22:23:37 -04:00
zoxide
# system info
hwloc
lynis
pciutils
smartmontools
usbutils
2024-04-20 12:54:33 -04:00
# networking
2024-04-14 22:23:37 -04:00
iperf3
nmap
wget
# GUI
beeper
candy-icons
2024-05-21 18:25:44 -04:00
cinnamon.nemo
cinnamon.nemo-fileroller
2024-04-14 22:23:37 -04:00
discord-canary
firefox
2024-05-21 18:25:44 -04:00
gimp
obs-studio
2024-04-14 22:23:37 -04:00
obsidian
sweet-nova
# python
python3
ruff
# Rust packages
topgrade
trunk
wasm-pack
cargo-watch
cargo-generate
cargo-audit
cargo-update
# nix
nix-init
nix-output-monitor
nix-prefetch
nix-tree
nixpkgs-fmt
];
}