dotfiles/hosts/common/optional/hyprland.nix

15 lines
181 B
Nix
Raw Normal View History

2023-09-26 01:20:43 +00:00
{pkgs, ... }: {
services.xserver = {
displayManager.gdm = {
wayland = true;
};
};
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
}