nix-config/modules/hyprland.nix
2024-10-13 15:22:42 +02:00

12 lines
261 B
Nix

{ inputs, pkgs, ... }:
{
# Enable Hyprland
programs.hyprland.enable = true;
environment.sessionVariables.NIXOS_OZONE_WL = "1";
environment.sessionVariables.WLR_NO_HARDWARE_CURSORS = "1";
environment.systemPackages = with pkgs; [
hyprlock
];
}