Files
.github
.vscode
docs
hydra
keys
lib
modules
systems
users
alice
richie
global
home
cli
gui
programs.nix
sshconfig.nix
default.nix
home.nix
secrets.yaml
default.nix
.envrc
.gitconfig
.gitignore
.sops.yaml
checks.nix
flake.lock
flake.nix
shell.nix
sops-mergetool.sh
statix.toml
treefmt.toml
nix-dotfiles/users/richie/home/programs.nix

47 lines
574 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
# python
2024-05-27 15:35:41 -04:00
poetry
2024-04-14 22:23:37 -04:00
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
];
}