dotnix/modules/home/xdg.nix
2025-03-29 19:05:05 +01:00

16 lines
279 B
Nix

{ pkgs, ... }:
{
xdg = {
enable = true;
mime.enable = true;
mimeApps = {
enable = true;
};
portal = {
enable = true;
extraPortals = with pkgs; [ xdg-desktop-portal-hyprland ];
configPackages = with pkgs; [ hyprland ];
};
};
}