Files
dotfiles/home/services/xdg.nix
servius 3b23c25509
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat: Update stuff
2026-03-09 16:54:14 +05:30

17 lines
285 B
Nix

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