2023-01-28 21:27:52 +00:00
|
|
|
pkgs: {
|
2022-04-28 21:20:18 +00:00
|
|
|
Unit = {
|
|
|
|
Description = "A VNC server for wlroots based Wayland compositors ";
|
|
|
|
Documentation = "https://github.com/any1/wayvnc";
|
2023-01-28 21:27:52 +00:00
|
|
|
BindsTo = ["sway-session.target"];
|
|
|
|
After = ["graphical-session-pre.target" "network-online.target"];
|
|
|
|
Wants = ["graphical-session-pre.target" "network-online.target"];
|
2022-04-28 21:20:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 = {
|
2023-01-28 21:27:52 +00:00
|
|
|
WantedBy = ["sway-session.target"];
|
2022-04-28 21:20:18 +00:00
|
|
|
};
|
|
|
|
}
|