reNixos/ada/programs/uwsm.nix
s0me1newithhand7s 2c872403b6 feat(ada): tty update
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-05-29 16:12:16 +03:00

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"}";
};
};
};
};
}