Install trash-cli and alias trash to trash-put for safe file deletion. Also clean up package comments and remove spacedrive-v2. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
48 lines
1.1 KiB
Nix
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 # Investment management
|
|
pytr # TradeRepublic CLI
|
|
tabiew # csv viewer
|
|
trash-cli # Freedesktop trash management
|
|
|
|
# Productivity
|
|
obsidian # Note taking
|
|
todoist-electron # To-Do List app
|
|
thunderbird # Email client
|
|
onlyoffice-desktopeditors # libreoffice alternative
|
|
speedcrunch # GUI calculator app
|
|
calibre # eBook Manager
|
|
# 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
|
|
];
|
|
}
|