nix-config/modules/packages.nix
Donovan Glover 2995ae4d7a
meta: Replace feh with pqiv
pqiv is an image viewer that, unlike feh, has native support for
Wayland, which makes working with it quite nice. It also supports
showing a thumbnail mode that lets you preview and switch between
images with ease, as well as the ability to run custom commands
based on the current image.

pqiv has more features than imv *and* anti-aliasing *actually works*,
making it an ideal choice for image viewing on Wayland. After years of
using feh, I am quite happy that I found pqiv.
2023-06-24 14:58:44 -04:00

95 lines
1.2 KiB
Nix

{ pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
grimblast
waycorner
slade
typespeed
osu-lazer-bin
pass
treefmt
jamesdsp
logseq
mullvad-browser
spek
gdu
fdupes
mediainfo
ponysay
lolcat
cmatrix
sox
httpie
p7zip
rsync
unar
unrar-wrapper
genact
ffmpeg
killall
trashy
whois
dwt1-shell-color-scripts
dig
yt-dlp
neofetch
pywal
brightnessctl
zellij
hexyl
gnome.gnome-disk-utility
nb
jpegoptim
playerctl
recode
rmlint
sd
smartmontools
visidata
scc
hwinfo
stress
nixpkgs-review
choose
gum
hdparm
imagemagick
onefetch
restic
watchexec
memento
mpvpaper
timg
ventoy
wf-recorder
mdcat
mdbook
zola
file
tessen
wtype
mtr
cointop
pqiv
poppler_utils
wl-clipboard
lnch
wev
swww
hyprland-autoname-workspaces
srb2
crystalline
go-thumbnailer
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"osu-lazer-bin"
];
environment.defaultPackages = [ ];
}