10 lines
152 B
Nix
10 lines
152 B
Nix
{ pkgs, configs, ... }:
|
|
{
|
|
services.openvscode-server = {
|
|
enable = true;
|
|
telemetryLevel = "off";
|
|
port = 3003;
|
|
host = "0.0.0.0";
|
|
};
|
|
}
|