This commit is contained in:
2025-08-05 07:56:45 -05:00
parent eb5424f1ac
commit 75d607bcbe

View File

@@ -1,4 +1,4 @@
{ config, lib, ... }: {
{ config, lib, pkgs, ... }: {
options.sysconfig.opts.virtualization.novnc.enable = lib.mkOption {
type = lib.types.bool;
@@ -20,7 +20,7 @@
enable = true;
script = ''
novnc --listen 80 --vnc 192.168.100.10:5900
${pkgs.novnc}/bin/novnc --listen 80 --vnc 192.168.100.10:5900
'';
};