hyprland: Refactor to accommodate more DEs

This commit is contained in:
SebastianStork 2026-03-05 20:57:20 +01:00
parent 927f056987
commit 048c7fb888
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
7 changed files with 72 additions and 63 deletions

View file

@ -0,0 +1,12 @@
{ config, lib, ... }:
{
options.custom.programs.hyprland.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.programs.hyprland.enable {
wayland.windowManager.hyprland = {
enable = true;
package = null;
portalPackage = null;
};
};
}