diff --git a/hosts/ymir/configuration.nix b/hosts/ymir/configuration.nix index 8933373..407fbff 100644 --- a/hosts/ymir/configuration.nix +++ b/hosts/ymir/configuration.nix @@ -150,19 +150,6 @@ crony.hyprland-nixos.enable = true; crony.ollama.enable = true; - xdg.portal = { - enable = true; - wlr = { - enable = true; - settings = { - screencast = { - chooser_type = "simple"; - chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -ro"; - }; - }; - }; - }; - # List packages installed in system profile environment.systemPackages = with pkgs; [ neovim diff --git a/modules/linux/home-manager/wayland.nix b/modules/linux/home-manager/wayland.nix index e4b9e9b..ec94330 100644 --- a/modules/linux/home-manager/wayland.nix +++ b/modules/linux/home-manager/wayland.nix @@ -224,5 +224,17 @@ }; }; }; + + xdg.portal = { + enable = true; + extraPortals = [pkgs.xdg-desktop-portal-gtk]; + # config = { + # common = { + # default = [ + # "gtk" + # ]; + # }; + # }; + }; }; }