nix-flakes/modules/mizukios/features/hyprland.nix
2026-09-12 02:16:41 +09:00

15 lines
382 B
Nix

{ lib, ... }:
{
programs.hyprland = {
enable = true;
withUWSM = true;
};
programs.hyprlock.enable = true;
services.displayManager.defaultSession = "hyprland-uwsm";
# desktop.nix enables Plasma for the other machines; ena uses Hyprland.
services.desktopManager.plasma6.enable = lib.mkForce false;
xdg.portal.config.common.default = lib.mkForce "hyprland";
}