nixos/user/packages/default.nix

106 lines
1.3 KiB
Nix
Raw Normal View History

2024-05-14 15:42:09 +00:00
{ pkgs, inputs, ... }: {
2024-03-18 11:58:34 +00:00
home.packages = with pkgs; [
# Generic tools
age
2024-03-20 14:15:46 +00:00
discord
2024-07-07 22:05:51 +00:00
jellyfin-media-player
2024-09-13 16:42:10 +00:00
firefox-bin
2024-07-07 21:16:41 +00:00
pdfpc
2024-10-13 19:11:45 +00:00
terminator
2024-09-13 16:42:10 +00:00
openssl
2024-07-07 21:16:41 +00:00
qpwgraph
imagemagick
maim
2024-09-13 16:42:10 +00:00
direnv
2024-05-01 16:29:17 +00:00
libpng
2024-05-14 15:42:09 +00:00
p7zip
2024-05-01 16:29:17 +00:00
lshw
2024-09-13 16:42:10 +00:00
powershell
2024-04-24 14:14:17 +00:00
vlc
2024-05-01 16:29:17 +00:00
expat
xdeltaUnstable
2024-07-24 05:11:35 +00:00
transmission_4-gtk
2024-03-18 11:58:34 +00:00
alacritty
2024-04-21 04:49:09 +00:00
btop
2024-03-18 11:58:34 +00:00
bzip2
croc
easyeffects
fd
ffmpeg
file
glib
jq
kitty
kubectl
ncdu
nwg-look
mumble
2024-05-01 16:29:17 +00:00
pavucontrol
unrar
2024-05-14 15:42:09 +00:00
protonup-qt
protonup-ng
2024-03-18 11:58:34 +00:00
mpv
pamixer
pinentry
pulseaudio
pulsemixer
rbw
restic
ripgrep
sops
spotify
sshfs
2024-03-18 14:50:29 +00:00
expect
2024-03-18 11:58:34 +00:00
# k8s tools
2024-04-21 04:49:09 +00:00
talosctl
k9s
cilium-cli
cmctl
2024-07-07 22:42:43 +00:00
zenity
2024-04-21 04:49:09 +00:00
protontricks
winetricks
2024-07-24 06:33:32 +00:00
wineWowPackages.stagingFull
2024-03-18 11:58:34 +00:00
tokei
unzip
2024-04-21 04:49:09 +00:00
zoom-us
vmware-horizon-client
2024-03-18 11:58:34 +00:00
# Editors
# vscode
# Go stuff
go
delve
gopls
# js/ts
nodejs
nodePackages.pnpm
typescript
# Py stuff
2024-09-13 16:42:10 +00:00
(python312.withPackages (
p: with p; [
pip
virtualenv
ipython
distutils
setuptools
mypy
pydantic
poetry-core
2024-10-13 19:11:45 +00:00
ruff
maturin
2024-09-13 16:42:10 +00:00
]
))
2024-03-18 11:58:34 +00:00
# Rust
2024-10-13 19:11:45 +00:00
rustup
2024-09-13 16:42:10 +00:00
gcc
2024-10-13 19:11:45 +00:00
gnumake
2024-03-18 11:58:34 +00:00
2024-03-20 14:15:46 +00:00
2024-03-18 11:58:34 +00:00
];
}