Files
nixos/henrovnix_ok/home/desktop/hyprland.nix
T
2026-03-03 22:01:45 +01:00

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" ];
};
};
}