nixos/user/packages/default.nix

85 lines
1.0 KiB
Nix
Raw Normal View History

2024-03-18 11:58:34 +00:00
{ pkgs, ... }: {
home.packages = with pkgs; [
# Generic tools
age
2024-03-20 14:15:46 +00:00
discord
2024-03-18 11:58:34 +00:00
alacritty
unstable.btop
bzip2
croc
easyeffects
fd
ffmpeg
file
go-task
glib
jq
kitty
kubectl
ncdu
nwg-look
mumble
mpv
pamixer
pinentry
pre-commit
pulseaudio
pulsemixer
rbw
restic
ripgrep
sops
spotify
spicetify-cli
sshfs
unstable.ventoy
2024-03-18 14:50:29 +00:00
expect
2024-03-18 11:58:34 +00:00
# k8s tools
unstable.talosctl
unstable.k9s
unstable.cilium-cli
unstable.kubernetes-helm
unstable.cmctl
unstable.krew
# steam
# steam-run
# steamcmd
# gamescope
tokei
unzip
yt-dlp
unstable.zoom-us
unstable.vmware-horizon-client
# Editors
# vscode
# Go stuff
go
delve
gopls
# js/ts
nodejs
nodePackages.pnpm
typescript
# Py stuff
(unstable.python312.withPackages (p: with p; [
requests
2024-03-21 14:51:35 +00:00
mypy
pydantic
typer
2024-03-18 11:58:34 +00:00
]))
poetry
ruff
# Rust
rustup
2024-03-20 14:15:46 +00:00
2024-03-18 11:58:34 +00:00
];
}