diff --git a/home/services/default.nix b/home/services/default.nix index 979c40ca..0f2ed02a 100644 --- a/home/services/default.nix +++ b/home/services/default.nix @@ -10,5 +10,6 @@ ./gui.nix ./eww.nix ./hyprmon.nix + ./xdg.nix ]; } diff --git a/home/services/xdg.nix b/home/services/xdg.nix new file mode 100644 index 00000000..4b499d8d --- /dev/null +++ b/home/services/xdg.nix @@ -0,0 +1,12 @@ +{pkgs, ...}: { + xdg.portal = { + enable = true; + # config = { + # + # }; + extraPortals = with pkgs; [ + xdg-desktop-portal-hyprland + kdePackages.xdg-desktop-portal-kde + ]; + }; +}