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

11 lines
214 B
Nix
Raw Normal View History

{ ... }:
{
2024-01-22 10:20:29 +00:00
sane.programs.evince = {
sandbox.method = "bwrap";
sandbox.extraConfig = [
"--sane-sandbox-autodetect"
];
2024-01-22 10:20:29 +00:00
mime.associations."application/pdf" = "org.gnome.Evince.desktop";
};
}