nixos-config/hosts/nixos-laptop/config/hyprland.nix
afoucaultc df94405cef yeeee
2026-07-07 20:42:01 +02:00

13 lines
348 B
Nix

{ pkgs, inputs, ... }:
{
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
# Portails XDG (captures d'écran, partage d'écran, file pickers Wayland)
xdg.portal = {
enable = true;
extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
};
security.polkit.enable = true;
}