Files
dotfiles/hosts/modules/wayland.nix
Amneesh Singh ed71d6459c fmt
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-02-25 17:16:10 +05:30

12 lines
204 B
Nix

{ inputs, pkgs, ... }:
{
xdg.portal = {
enable = true;
extraPortals = [
inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland
];
config.common.default = "*";
};
}