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

14 lines
342 B
Nix
Raw Normal View History

2023-07-02 01:40:36 +00:00
{ ... }:
{
sane.programs.lemoa = {
buildCost = 1;
2024-02-16 05:32:22 +00:00
sandbox.method = "bwrap";
sandbox.net = "clearnet";
sandbox.whitelistDbus = [ "user" ]; # for clicking links
sandbox.whitelistDri = true;
sandbox.whitelistWayland = true;
2023-07-02 01:40:36 +00:00
# creds
persist.byStore.private = [ ".local/share/io.github.lemmygtk.lemoa" ];
2023-07-02 01:40:36 +00:00
};
}