Nix
To install Hyprland on NixOS, we provide a NixOS and a Home Manager module.
- (Required) NixOS Module: enables critical components needed to run Hyprland properly
- (Optional) Home-manager module: lets you declaratively configure Hyprland
The module is now upstreamed into Nixpkgs, which means all you need in your configuration is:
{config, pkgs, ...}: {
programs.hyprland.enable = true;
# Optional, hint electron apps to use wayland:
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
}
Note that the command to run hyprland is Hyprland
(with a capital H
) and not hyprland
.
For more options, see module options.
For other NixOS options, see Hyprland on NixOS.
Read Hyprland on Home Manager.
Read Options & Overrides.