nix-files/hosts/common/programs/komikku.nix
2024-01-29 12:56:08 +00:00

11 lines
419 B
Nix

{ ... }:
{
sane.programs.komikku = {
sandbox.method = "bwrap"; # TODO:sandbox untested
sandbox.wrapperType = "wrappedDerivation";
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" ];
};
}