Files
dotfiles/home/services/xdg.nix
servius 04a9d2ce76
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m29s
chore: Remove iamb doesn't build on darwin
2026-03-09 17:11:07 +05:30

20 lines
328 B
Nix

{
pkgs,
lib,
device,
inputs,
...
}:
{
xdg.portal = {
enable = device.is "ryu";
config = {
hyprland.default = ["hyprland"];
common.default = ["*" "hyprland"];
};
};
}
// lib.optionalAttrs (device.is "ryu") {
environment.pathsToLink = ["/share/xdg-desktop-portal" "/share/applications"];
}