Don't think I want this anyway

This commit is contained in:
Lillian Violet 2024-01-10 11:17:18 +01:00
parent 212a675cb1
commit 05fdaeea5d
3 changed files with 2 additions and 27 deletions

View file

@ -1,24 +0,0 @@
{
config,
pkgs,
lib,
...
}: {
services.openvscode-server = {
enable = true;
port = 7773;
telemetryLevel = "off";
withoutConnectionToken = true;
};
services.nginx = {
virtualHosts = {
"code.lillianviolet.dev" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:7773";
};
};
};
};
}