nixos/home/packages/default.nix

36 lines
381 B
Nix
Raw Normal View History

2024-02-27 09:15:40 +00:00
{ pkgs, ...}: {
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-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 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
# Go stuff
go
delve
gopls
# Py stuff
python3
poetry
ruff
];
}