config/systems/desktop/xdg.nix
2024-09-29 16:42:01 +01:00

13 lines
192 B
Nix

{ pkgs, inputs, ... }:
{
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
extraPortals = [
pkgs.xdg-desktop-portal-gtk
];
};
programs.dconf.enable = true;
}