* clear-up nixos installation * Nix: clear up wording * Nix: add example config for HM Co-authored-by: Mihai Fufezan <fufexan@protonmail.com>
2.1 KiB
The NixOS module enables critical components needed to run Hyprland properly, such as: polkit, xdg-desktop-portal-hyprland, graphics drivers, fonts, dconf, xwayland, and adding a proper Desktop Entry to your Display Manager.
Make sure to check out the options of the NixOS module.
{{< tabs "uniqueid" >}}
{{< tab "Nixpkgs" >}}
# configuration.nix
{pkgs, ...}: {
programs.hyprland.enable = true;
}
This will use the Hyprland version that Nixpkgs has.
{{< /tab >}}
{{< tab "Flake package" >}}
{{< hint >}} Please enable Cachix before using the flake package, so you don't have to compile Hyprland yourself. {{< /hint >}}
In case you want to use the development version of Hyprland, you can add it like this:
# flake.nix
{
inputs.hyprland.url = "github:hyprwm/Hyprland";
# ...
outputs = {nixpkgs, ...} @ inputs: {
nixosConfigurations.HOSTNAME = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; # this is the important part
modules = [
./configuration.nix
];
};
}
}
# configuration.nix
{inputs, pkgs, ...}: {
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
}
Don't forget to change the HOSTNAME
to your actual hostname!
{{< /tab >}}
{{< tab "Flake package, Nix stable" >}}
{{< hint >}} Please enable Cachix before using the flake package, so you don't have to compile Hyprland yourself. {{< /hint >}}
# configuration.nix
{pkgs, ...}: let
flake-compat = builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz";
hyprland-flake = (import flake-compat {
src = builtins.fetchTarball "https://github.com/hyprwm/Hyprland/archive/master.tar.gz";
}).defaultNix;
in {
programs.hyprland = {
enable = true;
package = hyprland-flake.packages.${pkgs.system}.hyprland;
};
}
{{< /tab >}} {{< /tabs >}}