programs: define persistence for Tangram

This commit is contained in:
Colin 2023-07-09 07:18:15 +00:00
parent 5e66bad3dd
commit 963e59070d
2 changed files with 14 additions and 0 deletions

View File

@ -31,6 +31,7 @@
./splatmoji.nix
./steam.nix
./sublime-music.nix
./tangram.nix
./vlc.nix
./web-browser.nix
./wireshark.nix

View File

@ -0,0 +1,13 @@
# Tangram is a GTK/webkit browser
# it views each tab as a distinct application, persisted, and where the 'home' button action is specific to each tab.
# it supports ephemeral tabs, but UX is heavily geared to GCing those as early as possible.
{ ... }:
{
sane.programs.tangram = {
persist.private = [
".cache/Tangram"
".local/share/Tangram"
];
};
}