Jordan Holt c2659206a0
All checks were successful
Check flake / build-amd64-linux (push) Successful in 4m35s
hyprland: re-add system module
2025-03-16 17:20:00 +00:00

26 lines
377 B
Nix

{
config,
lib,
...
}:
let
inherit (lib)
mkEnableOption
mkIf
;
cfg = config.modules.system.desktop.hyprland;
in
{
options.modules.system.desktop.hyprland.enable = mkEnableOption "hyprland";
config = mkIf cfg.enable {
services.displayManager.ly.enable = true;
programs.hyprland = {
enable = true;
# withUWSM = true;
};
};
}