nix-da/modules/programs/hyprland.nix
2024-12-11 18:14:49 +01:00

10 lines
276 B
Nix

{ lib, config, ... }:
lib.mkIf config.programs.hyprland.enable {
programs.uwsm = {
waylandCompositors.hyprland = {
prettyName = "Hyprland";
comment = "Hyprland compositor managed by UWSM";
binPath = "/run/current-system/sw/bin/Hyprland";
};
};
}