Files
dotfiles/home/services/xdg.nix
2026-03-07 22:43:13 +05:30

21 lines
347 B
Nix

{
pkgs,
lib,
device,
inputs,
...
}: {
xdg.portal = {
enable = device.is "ryu";
config = {
hyprland.default = ["hyprland"];
common.default = ["*" "hyprland"];
};
extraPortals = with pkgs; [
kdePackages.xdg-desktop-portal-kde
xdg-desktop-portal-hyprland
xdg-desktop-portal-gtk
];
};
}