Commit 595387c41b14
Changed files (1)
systems
common
desktop
systems/common/desktop/tiling-common.nix
@@ -33,21 +33,30 @@
libinput = {
touchpad = {
disableWhileTyping = true;
- additionalOptions = ''
- Option "Ignore" "on"
- '';
+ # additionalOptions = ''
+ # Option "Ignore" "on"
+ # '';
};
};
};
- xdg = {
- portal = {
- enable = true;
- wlr.enable = true;
- extraPortals = with pkgs; [
- xdg-desktop-portal-wlr
- xdg-desktop-portal-gtk
- ];
+ xdg.portal = {
+ enable = true;
+ xdgOpenUsePortal = true;
+ config = {
+ common = {
+ default = [
+ "gnome"
+ "gtk"
+ ];
+ "org.freedesktop.impl.portal.ScreenCast" = "gnome";
+ "org.freedesktop.impl.portal.Screenshot" = "gnome";
+ "org.freedesktop.impl.portal.RemoteDesktop" = "gnome";
+ };
};
+ extraPortals = [
+ pkgs.xdg-desktop-portal-gtk
+ pkgs.xdg-desktop-portal-gnome
+ ];
};
}