feat(xdg): configure mimeapps and portal

This commit is contained in:
lightly-toasted 2025-08-16 12:01:45 +09:00
parent 976aaa3b6a
commit a5bc5e556e
2 changed files with 15 additions and 0 deletions

View file

@ -23,6 +23,7 @@
./modules/mouse-actions
./modules/hypridle.nix
./modules/obsidian.nix
./modules/xdg.nix
];
home = {

View file

@ -0,0 +1,14 @@
{
xdg = {
enable = true;
portal.enable = true;
mimeApps = {
enable = true;
defaultApplications = {
"x-scheme-handler/roblox-player" = "org.vinegarhq.Sober.desktop";
"x-scheme-handler/roblox-studio" = "org.vinegarhq.Vinegar.desktop";
"x-scheme-handler/discord" = "vesktop.desktop";
};
};
};
}