Nix/Hyprland on NixOS: fix kitty instructions

This commit is contained in:
Mihai Fufezan 2024-09-17 15:03:07 +03:00
parent 9e98f965ac
commit 618b9d025c
Signed by: fufexan
SSH Key Fingerprint: SHA256:SdnKmEpJrDu1+2UO1QpB/Eg4HKcdDi6n+xSRqFNJVpg
1 changed files with 6 additions and 4 deletions

View File

@ -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";