1773269042

This commit is contained in:
2026-03-11 16:44:02 -06:00
parent 2c74d644a4
commit 666c7db072
2 changed files with 11 additions and 1 deletions
-1
View File
@@ -12,7 +12,6 @@ let
./home/zed.nix ./home/zed.nix
./home/ghostty.nix ./home/ghostty.nix
./home/ssh.nix ./home/ssh.nix
./home/desktop-apps.nix
]; ];
in in
{ {
+11
View File
@@ -1,6 +1,17 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
xdg.mimeApps = {
enable = true;
defaultApplications = {
"text/html" = "librewolf.desktop";
"x-scheme-handler/http" = "librewolf.desktop";
"x-scheme-handler/https" = "librewolf.desktop";
"x-scheme-handler/about" = "librewolf.desktop";
"x-scheme-handler/unknown" = "librewolf.desktop";
};
};
programs.firefox = { programs.firefox = {
enable = true; enable = true;
package = pkgs.librewolf; package = pkgs.librewolf;