diff options
Diffstat (limited to 'modules/desktops/wayland.nix')
-rw-r--r-- | modules/desktops/wayland.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/modules/desktops/wayland.nix b/modules/desktops/wayland.nix deleted file mode 100644 index 600651f..0000000 --- a/modules/desktops/wayland.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ - lib, - config, - pkgs, - ... -}: let - inherit (lib) mkIf; - cfg = config.desktops; -in { - config = mkIf cfg.wayland { - xdg.portal = { - enable = true; - xdgOpenUsePortal = true; - extraPortals = with pkgs; [ - xdg-desktop-portal-gtk - ]; - config = { - default.common = ["gtk"]; - }; - }; - - programs.xwayland.enable = true; - }; -} |