2022-04-28 21:20:18 +00:00
|
|
|
pkgs:
|
|
|
|
{
|
|
|
|
Unit = {
|
|
|
|
Description = "A VNC server for wlroots based Wayland compositors ";
|
|
|
|
Documentation = "https://github.com/any1/wayvnc";
|
|
|
|
BindsTo = [ "sway-session.target" ];
|
|
|
|
After = [ "graphical-session-pre.target" "network-online.target" ];
|
|
|
|
Wants = [ "graphical-session-pre.target" "network-online.target" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
Type = "simple";
|
2022-04-30 15:08:48 +00:00
|
|
|
ExecStart = "${pkgs.wayvnc}/bin/wayvnc -r -p 0.0.0.0 5901";
|
2022-04-28 21:20:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Install = {
|
|
|
|
WantedBy = [ "sway-session.target" ];
|
|
|
|
};
|
|
|
|
}
|