{ config, lib, pkgs, ... }: { home.packages = with pkgs; [ # top like tools bmon # network monitor gotop # fancy top mtr # interactive traceroute # batch processing/automation jq # sed for json parallel # parallel batch processing yq # sed for yaml # unix tools on steroids curlie # better httpie (easier curl) exa # better ls fd # better find ripgrep # better grep # file tools aria # multithreaded http/ftp/bittorrent download manager dos2unix # convert CRLF (dos) or CR (classic mac) line endings to LF (unix) fdupes # find duplicate files file # file type hexyl # user friendly hex file viewer hyperfine # cli benchmarking megatools # cli for mega.nz minio-client # client for s3 compatible storage systems mktorrent # bittorrent seed file generator ntfs3g # ntfs filesystem driver rclone # rsync for cloud storage rename # sed for filenames rsync # incremental file transfer tokei # fast cloc wget # download tool xdelta # binary diff # file format tools imagemagick # image conversion p7zip # 7z cli pdftk # pdf multitool sqlite-interactive # cli for sqlite databses upx # executable packer # network tools dnsutils # dig gatling # high performance web serve iperf iperf2 # bandwidth measurement tool nmap # port scanner sshfs # mount remote host vnstat # client for vnstatd whois # whois client zmap # scanner for large address spaces # system tools libva-utils # vainfo lm_sensors # temperature sensors ncdu # interactive du pciutils # lspci reptyr # move process to current terminal smartmontools # hard drive monitoring usbutils # lsusb # clients drone-cli # client for drone ci hcloud # cli for Hetzner Cloud libnotify # notify-send # function eye candy fzf # fuzzy finder pv # monitor progress in pipe starship # zsh prompt # end user programs apacheHttpd # for htpasswd libqalculate # flexible calculator for humans scrcpy # stream/control android phones over adb taskwarrior # todo list manager # passwords (pass-wayland.withExtensions (es: with es; [ pass-otp ])) # password manager pwgen pwgen-secure # password generator xkcdpass # memorable password generator # misc toilet # free figlet python38Packages.ipython # better python repl (useful for one-liners) # vim neovim-remote # controlling another neovim process universal-ctags # ctags # git gitAndTools.delta # nicer diff gitAndTools.git-annex gitAndTools.git-annex-remote-rclone # git for non source files gitAndTools.pre-commit # pre-commit hook for git # nix tools niv # depdendency manager nixpkgs-review # review nixpkgs pull request ## media # audio and video ffmpeg-full # A/V multitool mediainfo # show information about media files mkvtoolnix-cli # matroska (de-)muxing unstable.waifu2x-converter-cpp # super-resolution for anime-style images youtube-dl # universal video downloader # audio abcde # cd ripper flac # flac encoder shntool # split audio with cue sidplayfp # SID chiptune player sox # “Swiss Army knife of audio manipulation” # images exiftool # manipulate EXIF meta data jpegoptim # lossless jpeg optimiser libwebp # tools for webp image format optipng # lossless png optimiser pngcrush pngquant # lossy png optimisers # documents mupdf # document (pdf) viewer and tools ] ++ (if config.sbruder.gui.enable then [ # communication claws-mail # email client that looks ugly but just works firefox-wayland # the least bad browser ((mumble.override { pulseSupport = true; }).overrideAttrs (o: o // { patches = o.patches ++ [ # TODO: remove patch once stable release supports this (pkgs.fetchurl { url = "https://github.com/mumble-voip/mumble/commit/03dbea56f650bba4f1aa0c54d02b6e8c3639d04f.patch"; sha256 = "1l7q2lxdkmykmqrvl5ga81vahs666yxiqsavx682kj1mh95pk3s4"; }) ]; })) # VoIP group chat ungoogled-chromium # useful for exporting pages as pdf # creative/design blender # 3d animation darktable # photo development gimp-with-plugins # bitmap image editor krita # drawing openscad # parametric/procedural 3d modelling inkscape # vector graphics editor # audio and video wf-recorder # wlroots screen recorder # audio audacity # audio editor picard # musicbrainz tagger # documents calibre # ebook library # office aspellDicts.de aspellDicts.en hunspellDicts.de-de hunspellDicts.en-gb-ise # dictionary gscan2pdf # scanning tool jameica # application framework (used for hibiscus online banking) libreoffice # office suite pdfsam-basic # pdf multitool xournalpp # notebook xsane # scanning tool # tools filezilla # ftp client gparted # gui for parted qalculate-gtk # flexible calculator antimicroX # gamepad to keyboard/mouse mapping wl-clipboard # not really gui, but cli tool to manage wayland clipboard wxhexeditor # hex editor xfce.thunar # graphical file manager ] else [ ]); }