mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-22 12:45:59 +01:00
Nix: update default options
This commit is contained in:
parent
be1a9a2d82
commit
59c401e263
2 changed files with 25 additions and 20 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
{{< hint >}}
|
||||||
|
This page only applies to the flake package. You can safely skip this if you use
|
||||||
|
the Nixpkgs package.
|
||||||
|
{{< /hint >}}
|
||||||
|
|
||||||
Hyprland is not built by Hydra and cached in `cache.nixos.org`, like the rest
|
Hyprland is not built by Hydra and cached in `cache.nixos.org`, like the rest
|
||||||
of the Nixpkgs packages.
|
of the Nixpkgs packages.
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ can be changed by setting the appropriate option to `true`/`false`.
|
||||||
```nix
|
```nix
|
||||||
(pkgs.hyprland.override { # or inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.default
|
(pkgs.hyprland.override { # or inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.default
|
||||||
enableXWayland = true;
|
enableXWayland = true;
|
||||||
hidpiXWayland = true;
|
hidpiXWayland = false;
|
||||||
nvidiaPatches = false;
|
nvidiaPatches = false;
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
@ -23,7 +23,7 @@ programs.hyprland = { # or wayland.windowManager.hyprland
|
||||||
enable = true;
|
enable = true;
|
||||||
xwayland = {
|
xwayland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
hidpi = true;
|
hidpi = false;
|
||||||
};
|
};
|
||||||
nvidiaPatches = false;
|
nvidiaPatches = false;
|
||||||
};
|
};
|
||||||
|
@ -38,10 +38,15 @@ in the package itself, or through the module options.
|
||||||
|
|
||||||
### XWayland HiDPI
|
### XWayland HiDPI
|
||||||
|
|
||||||
By default, the Nix package includes a patched wlroots that can render HiDPI
|
The `hyprland-hidpi` Nix package includes a patched wlroots that can render
|
||||||
XWayland windows.
|
HiDPI XWayland windows.
|
||||||
|
|
||||||
In order to enable the functionality, you have to add:
|
In order to enable HiDPI when using the NixOS or Home Manager modules, you can
|
||||||
|
set `programs.hyprland.xwayland.hidpi = true`, or
|
||||||
|
`wayland.windowManager.hyprland.xwayland.hidpi = true`, respectively.
|
||||||
|
|
||||||
|
Now that the required package to achieve HiDPI is installed, an XWayland
|
||||||
|
instruction is needed to set the scale:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
exec-once = xprop -root -f _XWAYLAND_GLOBAL_OUTPUT_SCALE 32c -set _XWAYLAND_GLOBAL_OUTPUT_SCALE 2
|
exec-once = xprop -root -f _XWAYLAND_GLOBAL_OUTPUT_SCALE 32c -set _XWAYLAND_GLOBAL_OUTPUT_SCALE 2
|
||||||
|
@ -60,34 +65,29 @@ env = XCURSOR_SIZE,48
|
||||||
The GDK_SCALE variable won't conflict with wayland-native GTK programs.
|
The GDK_SCALE variable won't conflict with wayland-native GTK programs.
|
||||||
{{< /hint >}}
|
{{< /hint >}}
|
||||||
|
|
||||||
Usually, there's no reason to disable this functionality, as it won't affect
|
|
||||||
people who don't have HiDPI screens.
|
|
||||||
|
|
||||||
If you _do_ insist on disabling it though (e.g. for adding your own patches
|
|
||||||
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
|
|
||||||
[disabling XWayland](#package).
|
|
||||||
|
|
||||||
### Plugins
|
### Plugins
|
||||||
|
|
||||||
Hyprland plugins can be added through the home manager module.
|
Hyprland plugins can be added through the home manager module.
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland.plugins = [
|
||||||
plugins = [
|
inputs.hyprland-plugins.packages.${pkgs.system}.hyprbars
|
||||||
inputs.hyprland-plugins.packages.${pkgs.system}.hyprbars
|
"/absolute/path/to/plugin.so"
|
||||||
"/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).
|
For examples on how to build hyprland plugins using nix see the
|
||||||
|
[official 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
|
||||||
patch wlroots.
|
patch wlroots.
|
||||||
|
|
||||||
|
In the NixOS and Home Manager modules, you can enable the Nvidia patches using
|
||||||
|
`programs.hyprland.nvidiaPatches` and `wayland.windowManager.hyprland.nvidiaPatches`,
|
||||||
|
respectively.
|
||||||
|
|
||||||
## Using Nix repl
|
## Using Nix repl
|
||||||
|
|
||||||
If you're using Nix (and not NixOS or Home Manager) and you want to override,
|
If you're using Nix (and not NixOS or Home Manager) and you want to override,
|
||||||
|
|
Loading…
Reference in a new issue