15 lines
434 B
Nix
15 lines
434 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;
|
|
}
|