move hyprland config to modules/wm/hyprland.nix

This commit is contained in:
Emile Clark-Boman 2025-08-31 15:09:20 +10:00
parent d1cfd55e67
commit 940a79292e
3 changed files with 15 additions and 8 deletions

View file

@ -0,0 +1,9 @@
{...}: {
programs = {
hyprland = {
enable = true;
withUWSM = true; # Universal Wayland Session Manager
xwayland.enable = true;
};
};
}