calibre: add module

This commit is contained in:
Aguirre Matteo 2025-12-03 10:14:16 -03:00 committed by Austin Horstman
parent df7bac2b2b
commit 24cc5c080c
6 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1 @@
{ calibre-settings = ./settings.nix; }

View file

@ -0,0 +1,14 @@
{
programs.calibre = {
enable = true;
plugins = [
./plugins/a
./plugins/b
];
};
nmt.script = ''
assertFileExists home-files/.config/calibre/plugins/a.zip
assertFileExists home-files/.config/calibre/plugins/b.zip
'';
}