feat(services): add XDG portal configuration for desktop integration

This commit is contained in:
uttarayan21
2025-08-29 11:24:05 +05:30
parent 429cbb2178
commit 0b23cfc75d
2 changed files with 13 additions and 0 deletions

View File

@@ -10,5 +10,6 @@
./gui.nix ./gui.nix
./eww.nix ./eww.nix
./hyprmon.nix ./hyprmon.nix
./xdg.nix
]; ];
} }

12
home/services/xdg.nix Normal file
View File

@@ -0,0 +1,12 @@
{pkgs, ...}: {
xdg.portal = {
enable = true;
# config = {
#
# };
extraPortals = with pkgs; [
xdg-desktop-portal-hyprland
kdePackages.xdg-desktop-portal-kde
];
};
}