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

14 lines
342 B
Nix

{ ... }:
{
sane.programs.lemoa = {
buildCost = 1;
sandbox.method = "bwrap";
sandbox.net = "clearnet";
sandbox.whitelistDbus = [ "user" ]; # for clicking links
sandbox.whitelistDri = true;
sandbox.whitelistWayland = true;
# creds
persist.byStore.private = [ ".local/share/io.github.lemmygtk.lemoa" ];
};
}