new_dots/configuration/modules/xdg-settings.nix
2026-01-27 19:04:45 +01:00

14 lines
253 B
Nix

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