cornflake/system/core/uwsm.nix
2026-02-19 09:30:42 +09:00

14 lines
277 B
Nix

{ pkgs, lib, ... }:
{
programs.uwsm = {
enable = true;
waylandCompositors = {
hyprland = {
prettyName = "Hyprland";
comment = "Hyprland compositor managed by UWSM";
binPath = "${pkgs.hyprland}/bin/start-hyprland";
};
};
};
}