mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-22 20:55:59 +01:00
Document home manager plugins array (#221)
This commit is contained in:
parent
d29033543d
commit
5e49caad46
1 changed files with 15 additions and 0 deletions
|
@ -68,6 +68,21 @@ to wlroots), you can do so by either using the `hyprland-no-hidpi` package,
|
||||||
or by passing the `hidpiXWayland = false;` flag, the same way as
|
or by passing the `hidpiXWayland = false;` flag, the same way as
|
||||||
[disabling XWayland](#package).
|
[disabling XWayland](#package).
|
||||||
|
|
||||||
|
### Plugins
|
||||||
|
|
||||||
|
Hyprland plugins can be added through the home manager module.
|
||||||
|
|
||||||
|
```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 [offical plugins](https://github.com/hyprwm/hyprland-plugins).
|
||||||
|
|
||||||
### Nvidia Patches
|
### Nvidia Patches
|
||||||
|
|
||||||
Nvidia is notorious for not working by default with wlroots. That's why we
|
Nvidia is notorious for not working by default with wlroots. That's why we
|
||||||
|
|
Loading…
Reference in a new issue