mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 11:08:34 +01:00
16 lines
306 B
Nix
16 lines
306 B
Nix
{pkgs, ...}: {
|
|
xdg.portal = {
|
|
enable = true;
|
|
wlr.enable = true;
|
|
extraPortals = [
|
|
pkgs.xdg-desktop-portal-gtk
|
|
pkgs.xdg-desktop-portal
|
|
];
|
|
configPackages = [
|
|
pkgs.xdg-desktop-portal-gtk
|
|
pkgs.xdg-desktop-portal-hyprland
|
|
pkgs.xdg-desktop-portal
|
|
];
|
|
};
|
|
}
|