This is the result of ~100 commits to my NixOS config. Since I haven't always used `agenix-rekey`, this is another initial commit so that none of the secrets in my git history are leaked
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{pkgs, ...}: {
|
|
# TODO: Move these into individual modules rather than a catch-all
|
|
home.packages = with pkgs; [
|
|
gnupg
|
|
unzip
|
|
tldr # Quick man-page replacement
|
|
hyperfine # Terminal benchmarks
|
|
numbat # Scientific calculations
|
|
hexyl # Hex viewer
|
|
pastel # Color analyzer
|
|
yubikey-manager
|
|
croc # File transfer
|
|
zotero # Collect research sources
|
|
solaar # Logitech mouse driver
|
|
btop # Better resource monitor
|
|
bottom # System resource monitor
|
|
|
|
# GUI
|
|
# obsidian # Note taking
|
|
vlc # Video player
|
|
todoist-electron # Todo application
|
|
logseq # Knowledge Base
|
|
obsidian # Same as above
|
|
calibre # eBook Manager
|
|
vesktop # Discord Messenger
|
|
obs-studio # OBS Studio
|
|
wasistlos # WhatsApp client
|
|
libreoffice # Productivity Suite (like Microsoft Office)
|
|
cider # Apple Music player
|
|
filezilla # FTP Client
|
|
zathura # Document viewer
|
|
orca-slicer # Bambu Lab Slicer + Control
|
|
weylus # Use iPad Pro as graphics tablet
|
|
krita # Drawing software
|
|
mochi # SRS flashcards
|
|
# spacedrive # File explorer (Alpha, not usable yet)
|
|
thunderbird # Email client
|
|
speedcrunch # GUI calculator app
|
|
shotcut # Video editing
|
|
naps2 # Scanning
|
|
|
|
feh # Image viewer
|
|
xarchiver # Archive viewer/extractor
|
|
evince # Document viewer
|
|
];
|
|
}
|