hyprland-wiki/pages/Nix/_index.md

30 lines
973 B
Markdown
Raw Normal View History

To install Hyprland on NixOS, we provide a NixOS and a Home Manager module.
2023-02-14 14:30:40 +01:00
{{< hint title=note >}}
- *(Required) NixOS Module*: enables critical components needed to run Hyprland properly
- *(Optional) Home-manager module*: lets you declaratively configure Hyprland
{{< /hint >}}
2023-02-14 14:30:40 +01:00
## NixOS module
2022-12-18 14:20:19 +01:00
The module is now upstreamed into Nixpkgs, which means all you need in your configuration is:
2022-08-12 20:46:36 +02:00
```nix
{config, pkgs, ...}: {
programs.hyprland.enable = true;
# Optional, hint electron apps to use wayland:
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
}
```
2023-02-14 14:30:40 +01:00
Note that the command to run hyprland is `Hyprland` (with a capital `H`) and not `hyprland`.
For more options, see
[module options](https://search.nixos.org/options?channel=unstable&from=0&size=50&sort=relevance&type=packages&query=hyprland).
2023-02-14 14:30:40 +01:00
For other NixOS options, see [Hyprland on NixOS](./Hyprland-on-NixOS).
2022-09-09 16:53:49 +02:00
## Home-manager module
2022-12-09 13:38:13 +01:00
2023-02-14 14:30:40 +01:00
Read [Hyprland on Home Manager](./Hyprland-on-Home-Manager).