fix: properly configure yazi

Now super+e opens yazi instead of trying to open dolphin
This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2024-02-07 19:12:51 -03:00
parent 0a369a745b
commit 392a94a4ec
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
5 changed files with 20 additions and 23 deletions

View file

@ -15,7 +15,6 @@
./programs/rofi
./programs/waybar.nix
./programs/wezterm
./programs/yazi
];
# Home Manager needs a bit of information about you and the paths it should
@ -230,6 +229,9 @@
# My utility scripts
".local/share/scripts".source = ./scripts;
# Yazi's configuration
".config/yazi".source = ./programs/yazi;
};
@ -276,9 +278,10 @@
# Configure XDG
xdg.mimeApps.defaultApplications = {
"text/html" = "firefox";
"video/x-matroska" = "vlc";
"x-scheme-handler/about" = "firefox";
"x-scheme-handler/http" = "firefox";
"x-scheme-handler/https" = "firefox";
"x-scheme-handler/about" = "firefox";
"x-scheme-handler/unknown" = "firefox";
};
}