17 lines
372 B
Nix
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;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|