10 lines
165 B
Nix
10 lines
165 B
Nix
|
|
{...}: {
|
||
|
|
programs = {
|
||
|
|
hyprland = {
|
||
|
|
enable = true;
|
||
|
|
withUWSM = true; # Universal Wayland Session Manager
|
||
|
|
xwayland.enable = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|