nixos/coder: init module

This commit is contained in:
Soner Sayakci 2022-10-24 20:08:00 +00:00
parent 0566d27d03
commit 56ecab709a
No known key found for this signature in database
7 changed files with 299 additions and 83 deletions

24
nixos/tests/coder.nix Normal file
View file

@ -0,0 +1,24 @@
import ./make-test-python.nix ({ pkgs, ... }: {
name = "coder";
meta = with pkgs.lib.maintainers; {
maintainers = [ shyim ghuntley ];
};
nodes.machine =
{ pkgs, ... }:
{
services.coder = {
enable = true;
accessUrl = "http://localhost:3000";
};
};
testScript = ''
machine.start()
machine.wait_for_unit("postgresql.service")
machine.wait_for_unit("coder.service")
machine.wait_for_open_port(3000)
machine.succeed("curl --fail http://localhost:3000")
'';
})