This commit is contained in:
2025-08-04 13:16:12 -05:00
parent 5df94b1016
commit a27bf3d179
7 changed files with 24 additions and 61 deletions

View File

@@ -7,8 +7,19 @@
config = lib.mkIf config.homeconfig.wayvnc.enable {
home.packages = with pkgs; [
wayvnc
novnc
];
services.wayvnc = {
enable = true;
autoStart = true;
settings = {
address = "0.0.0.0";
port = 5900;
};
};
};
}