feat: setup hyprland

This commit is contained in:
tux
2026-05-07 02:41:56 +05:30
parent aabcad5bec
commit ff9bc06c61
8 changed files with 777 additions and 21 deletions

View File

@@ -0,0 +1,19 @@
{
flake.modules.homeManager.desktop =
{ pkgs, ... }:
{
home.packages = with pkgs; [
ags
awww
];
wayland.windowManager.hyprland = {
enable = true;
package = null;
portalPackage = null;
xwayland.enable = true;
systemd.variables = [ "--all" ];
};
};
}