mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-08 06:25:58 +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
|
||||
|
||||
{
|
||||
programs = {
|
||||
kitty.enable = true; # required for the default Hyprland config
|
||||
hyprland.enable = true; # enable Hyprland
|
||||
};
|
||||
programs.hyprland.enable = true; # enable Hyprland
|
||||
|
||||
environment.systemPackages = [
|
||||
# ... other packages
|
||||
pkgs.kitty # required for the default Hyprland config
|
||||
];
|
||||
|
||||
# Optional, hint Electron apps to use Wayland:
|
||||
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
|
|
Loading…
Reference in a new issue