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

12 lines
315 B
Nix
Raw Normal View History

2023-07-30 01:44:08 +00:00
{ ... }:
{
sane.programs.nheko = {
# not strictly necessary, but allows caching articles; offline use, etc.
persist.byStore.private = [
".config/nheko" # config file (including client token)
".cache/nheko" # media cache
".local/share/nheko" # per-account state database
];
};
2023-07-30 01:44:08 +00:00
}