Files
nix-config/modules/hm/desktop/hyprland.nix
2026-05-07 02:41:56 +05:30

20 lines
345 B
Nix

{
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" ];
};
};
}