75 lines
1006 B
Nix
75 lines
1006 B
Nix
|
{ pkgs, unstable, extra, ... }:
|
||
|
{
|
||
|
home.packages = (with pkgs; [
|
||
|
unzip
|
||
|
zip
|
||
|
xz
|
||
|
gzip
|
||
|
bzip2
|
||
|
p7zip
|
||
|
usbutils
|
||
|
pciutils
|
||
|
nettools
|
||
|
nmap
|
||
|
arp-scan
|
||
|
julia-bin
|
||
|
(python3.withPackages (ps: with ps; [
|
||
|
ipython
|
||
|
matplotlib
|
||
|
numpy
|
||
|
scipy
|
||
|
]))
|
||
|
ghc
|
||
|
firefox
|
||
|
gnupg
|
||
|
discord
|
||
|
dig
|
||
|
xxd
|
||
|
slack
|
||
|
imagemagick
|
||
|
ffmpeg
|
||
|
yt-dlp
|
||
|
libreoffice
|
||
|
protonmail-bridge
|
||
|
pass
|
||
|
protonvpn-gui
|
||
|
thunderbird
|
||
|
tidal-hifi
|
||
|
signal-desktop
|
||
|
transmission-gtk
|
||
|
xclip
|
||
|
clinfo
|
||
|
glxinfo
|
||
|
vulkan-tools
|
||
|
obs-studio
|
||
|
file
|
||
|
gimp
|
||
|
bat
|
||
|
steam
|
||
|
steam-run
|
||
|
rmapi
|
||
|
lutris
|
||
|
texlive.combined.scheme-full
|
||
|
zulip
|
||
|
rink
|
||
|
typst
|
||
|
ttyper
|
||
|
idris2
|
||
|
prismlauncher
|
||
|
vimv
|
||
|
whalebird
|
||
|
lean4
|
||
|
remmina
|
||
|
git-crypt
|
||
|
vcv-rack
|
||
|
]) ++ [
|
||
|
extra.agda
|
||
|
unstable.zoom-us
|
||
|
extra.sax2nf
|
||
|
extra.cornelis
|
||
|
extra.slippi-netplay
|
||
|
unstable.kicad
|
||
|
unstable.renoise
|
||
|
];
|
||
|
}
|