18 lines
415 B
Nix
18 lines
415 B
Nix
{ pkgs, inputs, ...}:
|
|
|
|
{
|
|
xdg = {
|
|
enable = true;
|
|
mime.enable = true;
|
|
mimeApps.enable = true;
|
|
portal = {
|
|
enable = true;
|
|
extraPortals = [
|
|
inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland
|
|
pkgs.xdg-desktop-portal-gtk
|
|
];
|
|
configPackages = [inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland];
|
|
};
|
|
};
|
|
}
|