nixos/home/packages/default.nix

41 lines
426 B
Nix
Raw Normal View History

2024-02-27 21:20:00 +00:00
{ pkgs, ... }: {
2024-02-27 09:15:40 +00:00
home.packages = with pkgs; [
# Generic tools
2024-02-27 11:17:01 +00:00
age
2024-02-27 09:15:40 +00:00
btop
2024-02-28 01:50:10 +00:00
bzip2
2024-02-27 11:17:01 +00:00
croc
2024-02-27 11:14:23 +00:00
file
2024-02-27 11:17:01 +00:00
go-task
2024-02-27 09:15:40 +00:00
jq
ncdu
2024-02-27 12:55:38 +00:00
pamixer
2024-02-27 12:32:57 +00:00
pinentry
2024-02-27 21:48:45 +00:00
pre-commit
2024-02-27 12:55:38 +00:00
pulsemixer
2024-02-27 12:06:36 +00:00
rbw
2024-02-27 11:17:01 +00:00
restic
2024-02-27 09:15:40 +00:00
ripgrep
2024-02-27 12:06:36 +00:00
rofi-rbw-wayland
2024-02-27 09:15:40 +00:00
tokei
unzip
yt-dlp
# Editors
vscode
2024-02-27 21:20:00 +00:00
2024-02-27 09:15:40 +00:00
# Go stuff
go
delve
gopls
# Py stuff
python3
poetry
ruff
2024-02-27 21:48:45 +00:00
# Rust
rustup
2024-02-27 09:15:40 +00:00
];
}