21 lines
474 B
Nix
21 lines
474 B
Nix
{ config, lib, pkgs, flakeRoot, ... }:
|
|
{
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
settings = {
|
|
};
|
|
};
|
|
xdg.portal = {
|
|
enable = true;
|
|
extraPortals = with pkgs; [
|
|
xdg-desktop-portal-gtk
|
|
xdg-desktop-portal-hyprland
|
|
];
|
|
config.common.default = [ "gtk" ];
|
|
config.hyprland = {
|
|
"org.freedesktop.impl.portal.Screencast" = [ "hyprland" ];
|
|
"org.freedesktop.impl.portal.RemoteDesktop" = [ "hyprland" ];
|
|
};
|
|
};
|
|
}
|