mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-22 12:45:59 +01:00
Nix/Hyprland on NixOS: fix kitty instructions
This commit is contained in:
parent
9e98f965ac
commit
618b9d025c
1 changed files with 6 additions and 4 deletions
|
@ -34,10 +34,12 @@ Make sure to check out the options of the
|
||||||
# configuration.nix
|
# configuration.nix
|
||||||
|
|
||||||
{
|
{
|
||||||
programs = {
|
programs.hyprland.enable = true; # enable Hyprland
|
||||||
kitty.enable = true; # required for the default Hyprland config
|
|
||||||
hyprland.enable = true; # enable Hyprland
|
environment.systemPackages = [
|
||||||
};
|
# ... other packages
|
||||||
|
pkgs.kitty # required for the default Hyprland config
|
||||||
|
];
|
||||||
|
|
||||||
# Optional, hint Electron apps to use Wayland:
|
# Optional, hint Electron apps to use Wayland:
|
||||||
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||||
|
|
Loading…
Reference in a new issue