programs: add stable calibre

This commit is contained in:
Charlie Root 2024-10-20 00:41:00 +02:00
commit 50d2b334ad
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw

View file

@ -1,61 +1,68 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
alsa-utils
anki
asciinema
cachix
calc
calibre
difftastic
element-desktop
evince
eza
gcc
gnumake
halloy
helvum
httpie
imagemagick
img2pdf
impala
imv
inetutils
jujutsu
keepassxc
lazygit
libtool
nextcloud-client
nicotine-plus
swww
microfetch
nmap
nyxt
# onlyoffice-bin
pandoc
pavucontrol
pdfarranger
polkit
pulsemixer
python3
pwvucontrol
qbittorrent
r2modman
ripgrep
signal-desktop-beta
strawberry
telegram-desktop
texliveFull
thunderbird
tor-browser
trash-cli
tutanota-desktop
typst
ungoogled-chromium
wineWowPackages.waylandFull
wireguard-tools
xdg-utils
xournalpp
zapzap
zoxide
];
{
inputs',
pkgs,
...
}: let
inherit (inputs'.nixpkgs-stable.legacyPackages) calibre;
in {
environment.systemPackages = with pkgs;
[
alsa-utils
anki
asciinema
cachix
calc
difftastic
element-desktop
evince
eza
gcc
gnumake
halloy
helvum
httpie
imagemagick
img2pdf
impala
imv
inetutils
jujutsu
keepassxc
lazygit
libtool
nextcloud-client
nicotine-plus
swww
microfetch
nmap
nyxt
# onlyoffice-bin
pandoc
pavucontrol
pdfarranger
polkit
pulsemixer
python3
pwvucontrol
qbittorrent
r2modman
ripgrep
signal-desktop-beta
strawberry
telegram-desktop
texliveFull
thunderbird
tor-browser
trash-cli
tutanota-desktop
typst
ungoogled-chromium
wineWowPackages.waylandFull
wireguard-tools
xdg-utils
xournalpp
zapzap
zoxide
]
++ [calibre];
}