add kindle-comic-converter and calibre

This commit is contained in:
Sakooooo 2023-07-31 22:52:30 +03:00
parent 9f7914d2e7
commit 8294847284
Signed by: sako
GPG key ID: 3FD715D87D7725E0
4 changed files with 35 additions and 0 deletions

View file

@ -29,6 +29,7 @@
keepassxc.enable = true; keepassxc.enable = true;
nicotineplus.enable = true; nicotineplus.enable = true;
transmission.enable = true; transmission.enable = true;
kcc.enable = true;
}; };
chat = { chat = {
discord.enable = true; discord.enable = true;

View file

@ -0,0 +1,16 @@
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.apps.calibre;
in
{
options.modules.desktop.apps.calibre = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
calibre
];
};
}

View file

@ -5,5 +5,7 @@
./kdeconnect ./kdeconnect
./nemo ./nemo
./transmission ./transmission
./kcc
./calibre
]; ];
} }

View file

@ -0,0 +1,16 @@
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.apps.kindle-comic-converter;
in
{
options.modules.desktop.apps.kindle-comic-converter = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
kcc
];
};
}