23 lines
275 B
Nix
23 lines
275 B
Nix
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
|
||
|
services = {
|
||
|
flatpak.enable = true;
|
||
|
};
|
||
|
|
||
|
xdg.portal = {
|
||
|
enable = true;
|
||
|
extraPortals = [pkgs.xdg-desktop-portal-gtk];
|
||
|
config = {
|
||
|
common = {
|
||
|
default = ["gtk"];
|
||
|
};
|
||
|
};
|
||
|
xdgOpenUsePortal = true;
|
||
|
};
|
||
|
|
||
|
}
|