Files
nix-config/hosts/common/optional/hyprland.nix
2025-08-26 09:21:24 -03:00

20 lines
395 B
Nix

{
config,
pkgs,
inputs,
...
}: {
programs.hyprland = {
enable = true;
withUWSM = false; # Disable UWSM integration
# You can add more configuration options here as needed
# For example, to set a basic config file:
# settings = {
# ...
# };
portalPackage = pkgs.xdg-desktop-portal-hyprland;
};
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}