Add xdg-desktop-portal-gtk

This commit is contained in:
ItsDrike 2024-06-22 07:41:08 +02:00
parent 083dc759d1
commit 702c4a00df
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 9 additions and 0 deletions

View file

@ -3,6 +3,7 @@
./mime-apps.nix ./mime-apps.nix
./user-dirs.nix ./user-dirs.nix
./config-files.nix ./config-files.nix
./portal.nix
]; ];
xdg = { xdg = {

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
};
}