mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
11 lines
184 B
Nix
11 lines
184 B
Nix
{pkgs, ...}: {
|
|
xdg = {
|
|
portal = {
|
|
enable = true;
|
|
config.common.default = "*";
|
|
extraPortals = with pkgs; [
|
|
xdg-desktop-portal-gtk
|
|
];
|
|
};
|
|
};
|
|
}
|