1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-06 05:13:28 +02:00
home-manager/tests/modules/programs/joplin-desktop/basic-configuration.nix
2024-03-13 14:28:30 +01:00

24 lines
518 B
Nix

{
programs.joplin-desktop = {
enable = true;
sync = {
target = "dropbox";
interval = "10m";
};
extraConfig = {
"richTextBannerDismissed" = true;
"newNoteFocus" = "title";
};
};
test.stubs.joplin-desktop = { };
nmt.script = ''
assertFileContains activate \
'/home/hm-user/.config/joplin-desktop/settings.json'
generated="$(grep -o '/nix/store/.*-joplin-settings.json' $TESTED/activate)"
diff -u "$generated" ${./basic-configuration.json}
'';
}