system/hm/modules/wayland.nix

15 lines
274 B
Nix
Raw Normal View History

2024-10-14 19:37:56 -04:00
{ pkgs, ... }:
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;
xwayland.enable = true;
2024-10-14 18:35:04 -04:00
};
};
}