system/hm/wayland.nix
2024-10-14 15:35:04 -07:00

17 lines
372 B
Nix

{ ... }:
{
# wayland.windowManager.hyprland.enable = true;
wayland.windowManager = {
hyprland = {
enable = true;
# # systemd ={
# # enable = true;
# # enableXdgAutostart = true;
# # variables = [ "--all" ];
# # };
# package = hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
xwayland.enable = true;
};
};
}