18 lines
326 B
Nix
18 lines
326 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs = {
|
|
uwsm = {
|
|
enable = true;
|
|
waylandCompositors = {
|
|
"hyprland" = {
|
|
prettyName = "Hyprland";
|
|
comment = "Hyprland compositor managed by UWSM";
|
|
binPath = "${lib.getExe' pkgs.hyprland "start-hyprland"}";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|