Revert "code-server: drop"

This reverts commit 72911a99d3.
This commit is contained in:
Pol Dellaiera 2023-12-19 15:40:57 +01:00
parent e42d80fa6d
commit 1a57f50d95
No known key found for this signature in database
GPG key ID: D476DFE9C67467CA
10 changed files with 675 additions and 1 deletions

View file

@ -0,0 +1,22 @@
import ./make-test-python.nix ({pkgs, lib, ...}:
{
name = "code-server";
nodes = {
machine = {pkgs, ...}: {
services.code-server = {
enable = true;
auth = "none";
};
};
};
testScript = ''
start_all()
machine.wait_for_unit("code-server.service")
machine.wait_for_open_port(4444)
machine.succeed("curl -k --fail http://localhost:4444", timeout=10)
'';
meta.maintainers = [ lib.maintainers.drupol ];
})