Make firefox default pdf reader

This commit is contained in:
Lauren Lagarde 2025-06-30 21:27:08 -05:00
parent a8fafeb510
commit 36cf8102c9
1 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,15 @@
#{ pkgs-unstable, ... }: {
{ ... }: {
xdg = {
enable = true;
mimeApps = {
enable = true;
defaultApplications = {
"application/pdf" = "firefox.desktop";
};
};
};
programs.firefox = {
enable = true;
#package = pkgs-unstable.firefox;