nixos/modules/core/hyprland.nix

18 lines
193 B
Nix

{
config,
lib,
...
}:
with lib;
let
cfg = config.modules.hyprland;
in
{
config = mkIf cfg.enable {
programs.hyprland = {
enable = true;
withUWSM = true;
};
};
}