Files
cyper-desktop/home/packages.nix
2026-03-27 18:11:06 +01:00

62 lines
750 B
Nix

{ pkgs, ... }:
{
home = {
packages = with pkgs; [
# dev tools
curl
wget
btop
tree
ripgrep
pciutils
usbutils
nvme-cli
nmap
iperf3
lm_sensors
file
which
libnotify
jq
yq-go
# encryption
age
ssh-to-age
# GUI
openscad
element-desktop
zapzap
# audacity
blender
fstl
nautilus
swayimg
okular
gnumeric
sqlitebrowser
thunderbird
xonotic
# PDF Tools
pandoc
# misc
yt-dlp
ffmpeg
# Archives
zip
unzip
xz
zstd
gnutar
unrar
# Nix tools
nix-index
];
};
}