Files
nixconf/modules/gui/services/xdg.nix
T
2026-07-24 15:34:52 -06:00

14 lines
173 B
Nix

{ pkgs, ... }:
{
xdg = {
mime = {
enable = true;
};
portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
};
};
}