nixos-config/modules/nixos/hyprland.nix
2025-01-17 12:12:28 +01:00

17 lines
171 B
Nix

{
config,
lib,
pkgs,
...
}:
{
programs.uwsm.enable = true;
programs.hyprland = {
enable = true;
xwayland.enable = false;
withUWSM = true;
};
}