19 lines
497 B
Nix
19 lines
497 B
Nix
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";
|
|
ExecStart = "${pkgs.wayvnc}/bin/wayvnc -r -p 0.0.0.0 5901";
|
|
};
|
|
|
|
Install = {
|
|
WantedBy = ["sway-session.target"];
|
|
};
|
|
}
|