system/modules/xdg.nix
2024-10-14 16:37:56 -07:00

18 lines
433 B
Nix

{ config, pkgs, ... }:
{
xdg = {
autostart.enable = true;
portal = {
enable = true;
configPackages = [ pkgs.xdg-desktop-portal-hyprland ];
extraPortals = [ pkgs.xdg-desktop-portal-hyprland pkgs.xdg-desktop-portal-wlr ];
xdgOpenUsePortal = true;
wlr.enable = true;
};
# systemDirs = {
# config = [ "/etc/xdg" ];
# data = [ "/usr/share" "/usr/local/share" ];
# };
};
}