mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-02 03:45:57 +01:00
0aae54eb6a
treewide: replace hint with callout treewide: remove ToC header remove <toc>, since it's autogenerated add missing _index.md treewide: add frontmatter treewide: fix headings add weights Configuring,Getting Started: expand in sidebar Add version selector fix links
47 lines
1.3 KiB
Markdown
47 lines
1.3 KiB
Markdown
---
|
|
weight: 7
|
|
title: Nix
|
|
---
|
|
|
|
To install Hyprland on NixOS, we provide a NixOS and a Home Manager module.
|
|
|
|
{{< callout title=Note >}}
|
|
|
|
- _(Required) NixOS Module_: enables critical components needed to run Hyprland
|
|
properly
|
|
- _(Optional) Home-manager module_: lets you declaratively configure Hyprland
|
|
|
|
{{< /callout >}}
|
|
|
|
## NixOS module
|
|
|
|
The module is now upstreamed into Nixpkgs, which means all you need in your
|
|
configuration is:
|
|
|
|
```nix
|
|
{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](https://search.nixos.org/options?channel=unstable&from=0&size=50&sort=relevance&type=packages&query=hyprland).
|
|
|
|
For other NixOS options, see [Hyprland on NixOS](./hyprland-on-nixos).
|
|
|
|
## Home-manager module
|
|
|
|
Read [Hyprland on Home Manager](./hyprland-on-home-manager).
|
|
|
|
For the adventurous, [@spikespaz](https://github.com/spikespaz) has made a
|
|
Hyprland module that can be used in Home Manager and NixOS. It can be found
|
|
[here](https://github.com/spikespaz/hyprland-nix).
|
|
|
|
## Options and overrides
|
|
|
|
Read [Options & Overrides](./options--overrides).
|