NiksOS/system/programs/hyprland.nix
2025-02-14 19:40:27 +00:00

10 lines
289 B
Nix

{pkgs, ...}: {
programs.hyprland = {
enable = true;
withUWSM = true;
};
environment.systemPackages = [
pkgs.kitty # This is the default config's terminal and also my main one.
];
environment.sessionVariables.NIXOS_OZONE_WL = "1"; # Makes electron apps use wayland.
}