nix-config/home/xdg/default.nix

18 lines
471 B
Nix
Raw Normal View History

2025-01-14 01:29:24 +01:00
{config, pkgs, ...}: {
xdg = {
enable = true;
mimeApps = {
enable = true;
defaultApplications = {
"application/pdf" = ["org.gnome.Evince.desktop"];
"image/svg+xml" = ["viewnior.desktop"];
"image/jpeg" = ["viewnior.desktop"];
"image/png" = ["viewnior.desktop"];
"application/yaml" = ["org.x.editor.desktop"];
"text/plain" = ["org.x.editor.desktop"];
};
};
userDirs.enable = true;
};
}