nixos/user/packages/default.nix

104 lines
1.2 KiB
Nix
Raw Normal View History

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