This commit is contained in:
2025-08-05 09:42:45 -05:00
parent 75d607bcbe
commit e351e5b8c6

View File

@@ -19,9 +19,20 @@
systemd.services.novnc = {
enable = true;
path = with pkgs; [
novnc
ps
];
script = ''
${pkgs.novnc}/bin/novnc --listen 80 --vnc 192.168.100.10:5900
novnc --listen 80 --vnc 192.168.100.10:5900
'';
serviceConfig = {
Type = "exec";
};
wantedBy = [ "multi-user.target" ];
};