system/hm/modules/wayland.nix

17 lines
336 B
Nix
Raw Permalink Normal View History

{ pkgs, hyprland, ... }:
2024-10-14 18:35:04 -04:00
{
2024-11-29 18:46:42 -05:00
wayland.windowManager = {
2024-10-14 18:35:04 -04:00
hyprland = {
enable = true;
2024-11-01 12:04:24 -04:00
systemd ={
enable = true;
enableXdgAutostart = true;
variables = [ "--all" ];
};
# package = pkgs.hyprland;
package = null;
portalPackage = null;
2024-11-01 12:04:24 -04:00
xwayland.enable = true;
2024-10-14 18:35:04 -04:00
};
};
}