add kindle-comic-converter and calibre
This commit is contained in:
parent
9f7914d2e7
commit
8294847284
4 changed files with 35 additions and 0 deletions
|
@ -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;
|
||||||
|
|
16
modules/desktop/apps/calibre/default.nix
Normal file
16
modules/desktop/apps/calibre/default.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5,5 +5,7 @@
|
||||||
./kdeconnect
|
./kdeconnect
|
||||||
./nemo
|
./nemo
|
||||||
./transmission
|
./transmission
|
||||||
|
./kcc
|
||||||
|
./calibre
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
16
modules/desktop/apps/kcc/default.nix
Normal file
16
modules/desktop/apps/kcc/default.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue