16 lines
279 B
Nix
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 ];
|
|
};
|
|
};
|
|
}
|