calibre: add module
This commit is contained in:
parent
df7bac2b2b
commit
24cc5c080c
6 changed files with 60 additions and 0 deletions
1
tests/modules/programs/calibre/default.nix
Normal file
1
tests/modules/programs/calibre/default.nix
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ calibre-settings = ./settings.nix; }
|
||||
0
tests/modules/programs/calibre/plugins/a/a.zip
Normal file
0
tests/modules/programs/calibre/plugins/a/a.zip
Normal file
0
tests/modules/programs/calibre/plugins/b/b.zip
Normal file
0
tests/modules/programs/calibre/plugins/b/b.zip
Normal file
14
tests/modules/programs/calibre/settings.nix
Normal file
14
tests/modules/programs/calibre/settings.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue