mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
30 lines
608 B
Nix
30 lines
608 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.gallery-dl = {
|
|
enable = true;
|
|
|
|
package = config.lib.test.mkStubPackage { };
|
|
|
|
settings = {
|
|
cache.file = "~/gallery-dl/cache.sqlite3";
|
|
extractor.base-directory = "~/gallery-dl/";
|
|
};
|
|
};
|
|
|
|
test.stubs.gallery-dl = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.config/gallery-dl/config.json \
|
|
${builtins.toFile "gallery-dl-expected-settings.json" ''
|
|
{
|
|
"cache": {
|
|
"file": "~/gallery-dl/cache.sqlite3"
|
|
},
|
|
"extractor": {
|
|
"base-directory": "~/gallery-dl/"
|
|
}
|
|
}
|
|
''}
|
|
'';
|
|
}
|