diff --git a/pages/Nix/Hyprland on NixOS.md b/pages/Nix/Hyprland on NixOS.md index 6bc3201..65bc1a3 100644 --- a/pages/Nix/Hyprland on NixOS.md +++ b/pages/Nix/Hyprland on NixOS.md @@ -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";