Make firefox the default web browser

This commit is contained in:
Nathan McCarty 2022-09-18 22:02:23 -04:00
parent 25a654cec4
commit 64a3566107
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 8 additions and 1 deletions

View File

@ -78,7 +78,14 @@ with lib; with nLib; {
enable = true;
# Manage mime associations
mime.enable = true;
mimeApps.enable = true;
mimeApps = {
enable = true;
# Set firefox as the default browser
defaultApplications = {
"x-scheme-handler/https" = [ "firefox.desktop" ];
"x-scheme-handler/http" = [ "firefox.desktop" ];
};
};
};
};
}