Files
dotfiles/home/services/xdg.nix
servius ddb0345587
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat: Update use local model
2026-01-26 20:59:27 +05:30

20 lines
337 B
Nix

{
pkgs,
lib,
device,
...
}: {
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
];
};
}