2022-12-18 14:20:19 +01:00
|
|
|
You can use the Home Manager module by adding it to your configuration:
|
|
|
|
|
|
|
|
For a list of available options, check the
|
|
|
|
[module file](https://github.com/hyprwm/Hyprland/blob/main/nix/hm-module.nix).
|
|
|
|
|
2023-09-04 17:46:31 +02: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-07-17 18:14:43 +02:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
The following snippets of code try to show how to bring the Hyprland flake from
|
|
|
|
the flake input and import it into the module system. Feel free to make any
|
|
|
|
adjustment for your setup.
|
|
|
|
|
|
|
|
{{< tabs "uniqueid" >}}
|
|
|
|
|
|
|
|
{{< tab "Flakes" >}}
|
|
|
|
|
|
|
|
Don't forget to replace `user@hostname` with your username and hostname!
|
2022-12-18 14:20:19 +01:00
|
|
|
|
|
|
|
```nix
|
|
|
|
# flake.nix
|
2023-02-14 14:30:40 +01:00
|
|
|
|
2022-12-18 14:20:19 +01:00
|
|
|
{
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = {nixpkgs, home-manager, hyprland, ...}: {
|
|
|
|
homeConfigurations."user@hostname" = home-manager.lib.homeManagerConfiguration {
|
|
|
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
|
|
|
|
|
|
modules = [
|
|
|
|
hyprland.homeManagerModules.default
|
|
|
|
{wayland.windowManager.hyprland.enable = true;}
|
|
|
|
# ...
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2022-12-28 16:31:43 +01:00
|
|
|
}
|
2022-12-18 14:20:19 +01:00
|
|
|
```
|
2023-07-17 18:14:43 +02:00
|
|
|
{{< /tab >}}
|
2022-12-18 14:20:19 +01:00
|
|
|
|
2023-07-17 18:14:43 +02:00
|
|
|
{{< tab "No flakes (with flake-compat)" >}}
|
2022-12-18 14:20:19 +01:00
|
|
|
```nix
|
|
|
|
# home config
|
2023-02-14 14:30:40 +01:00
|
|
|
|
|
|
|
{pkgs, ...}: let
|
2022-12-18 14:20:19 +01:00
|
|
|
flake-compat = builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz";
|
|
|
|
|
|
|
|
hyprland = (import flake-compat {
|
|
|
|
src = builtins.fetchTarball "https://github.com/hyprwm/Hyprland/archive/master.tar.gz";
|
|
|
|
}).defaultNix;
|
|
|
|
in {
|
|
|
|
imports = [
|
|
|
|
hyprland.homeManagerModules.default
|
|
|
|
];
|
|
|
|
|
2023-02-14 14:30:40 +01:00
|
|
|
wayland.windowManager.hyprland = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
extraConfig = ''
|
|
|
|
bind = SUPER, Return, exec, kitty
|
|
|
|
# ...
|
|
|
|
'';
|
|
|
|
};
|
2022-12-18 14:20:19 +01:00
|
|
|
}
|
|
|
|
```
|
2023-07-17 18:14:43 +02:00
|
|
|
{{< /tab >}}
|
|
|
|
|
|
|
|
{{< /tabs >}}
|
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Once the module is enabled, you can use it to declaratively configure Hyprland:
|
|
|
|
|
|
|
|
```nix
|
|
|
|
# home.nix
|
|
|
|
{config, pkgs, ...}: {
|
|
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
|
|
$mod = SUPER
|
|
|
|
|
|
|
|
bind = $mod, F, exec, firefox
|
|
|
|
bind = , Print, exec, grimblast copy area
|
|
|
|
|
|
|
|
# workspaces
|
|
|
|
# binds $mod + [shift +] {1..10} to [move to] workspace {1..10}
|
|
|
|
${builtins.concatStringsSep "\n" (builtins.genList (
|
|
|
|
x: let
|
|
|
|
ws = let
|
|
|
|
c = (x + 1) / 10;
|
|
|
|
in
|
|
|
|
builtins.toString (x + 1 - (c * 10));
|
|
|
|
in ''
|
|
|
|
bind = $mod, ${ws}, workspace, ${toString (x + 1)}
|
|
|
|
bind = $mod SHIFT, ${ws}, movetoworkspace, ${toString (x + 1)}
|
|
|
|
''
|
|
|
|
)
|
|
|
|
10)}
|
|
|
|
|
|
|
|
# ...
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Plugins
|
|
|
|
|
|
|
|
Hyprland plugins can be added through an option:
|
|
|
|
|
|
|
|
```nix
|
|
|
|
wayland.windowManager.hyprland.plugins = [
|
|
|
|
inputs.hyprland-plugins.packages.${pkgs.system}.hyprbars
|
|
|
|
"/absolute/path/to/plugin.so"
|
|
|
|
];
|
|
|
|
```
|
|
|
|
|
|
|
|
For examples on how to build hyprland plugins using nix see the
|
|
|
|
[official plugins](https://github.com/hyprwm/hyprland-plugins).
|