10 lines
276 B
Nix
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";
|
|
};
|
|
};
|
|
}
|