This commit is contained in:
2026-03-27 18:11:06 +01:00
parent be00d8eefd
commit dd8d3f26bf
160 changed files with 4732 additions and 0 deletions

61
home/packages.nix Normal file
View File

@@ -0,0 +1,61 @@
{ 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
];
};
}