mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-22 12:45:59 +01:00
Nix: include kitty in code snippets
This commit is contained in:
parent
eb811e3564
commit
a8408557d5
2 changed files with 12 additions and 2 deletions
|
@ -28,7 +28,11 @@ For a list of available options, check the
|
|||
|
||||
```nix
|
||||
{
|
||||
wayland.windowManager.hyprland.enable = true;
|
||||
programs.kitty.enable = true; # required for the default Hyprland config
|
||||
wayland.windowManager.hyprland.enable = true; # enable Hyprland
|
||||
|
||||
# Optional, hint Electron apps to use Wayland:
|
||||
# home.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -34,7 +34,13 @@ Make sure to check out the options of the
|
|||
# configuration.nix
|
||||
|
||||
{
|
||||
programs.hyprland.enable = true;
|
||||
programs = {
|
||||
kitty.enable = true; # required for the default Hyprland config
|
||||
hyprland.enable = true; # enable Hyprland
|
||||
};
|
||||
|
||||
# Optional, hint Electron apps to use Wayland:
|
||||
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue