nix-files/hosts/common/programs/komikku.nix

11 lines
419 B
Nix
Raw Normal View History

2023-06-13 04:16:00 +00:00
{ ... }:
{
2023-06-13 04:42:58 +00:00
sane.programs.komikku = {
2024-01-29 12:52:16 +00:00
sandbox.method = "bwrap"; # TODO:sandbox untested
sandbox.wrapperType = "wrappedDerivation";
2023-06-13 04:42:58 +00:00
secrets.".local/share/komikku/keyrings/plaintext.keyring" = ../../../secrets/common/komikku_accounts.json.bin;
# downloads end up here, and without the toplevel database komikku doesn't know they exist.
persist.byStore.plaintext = [ ".local/share/komikku" ];
2023-06-13 04:42:58 +00:00
};
2023-06-13 04:16:00 +00:00
}