Files
nixy/nixos/hyprland.nix
T
2026-08-13 13:55:30 +02:00

17 lines
378 B
Nix

# Hyprland is a dynamic tiling Wayland compositor.
{...}: {
programs.hyprland = {
enable = true;
withUWSM = true;
};
# Generic Wayland hints (Chromium/Electron and Firefox), applied on every
# Hyprland host regardless of the GPU.
environment.variables = {
NIXOS_OZONE_WL = "1";
MOZ_ENABLE_WAYLAND = "1";
};
security.pam.services.hyprlock = {};
}