dotfiles/home/by-host/endurance/misc/everything.nix
Christopher Mühl b8f86f26e4
Add portfolio, pytr, and tabiew
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-12 23:10:50 +01:00

48 lines
1.1 KiB
Nix

{
pkgs,
inputs,
...
}: {
home.packages = with pkgs; [
gnupg
unzip
dua # Interactively view disk space usage
numbat # Scientific calculations
yubikey-manager
croc # File transfer
solaar # Logitech mouse driver
btop # Better resource monitor
bottom # System resource monitor
grim # Screenshots
slurp # Region selection
portfolio
pytr
tabiew # csv viewer
# Productivity
obsidian # Note taking
todoist-electron # To-Do List app
thunderbird # Email client
onlyoffice-desktopeditors # libreoffice alternative
speedcrunch # GUI calculator app
calibre # eBook Manager
spacedrive-v2
# loupe # Photo viewer
(dokieli.overrideAttrs
(final: prev: {
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp -r * $out
rm $out/LICENSE
runHook postInstall
'';
}))
cider-2 # Apple music player
fractal # Matrix client
gomuks # Matrix client TUI
filezilla # FTP Client
mochi # SRS flashcards
];
}