nixos-config/hosts/nixos-laptop/config/hyprland.nix
2026-07-03 21:56:32 +02:00

16 lines
504 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;
# Les substituters/caches sont centralisés dans low-ram.nix.
}