mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
157aee00a5
* nixos/sourcehut: init * sourcehut: default nginx setup * sourcehut: documentation * sourcehut: re-structure settings * sourcehut: tests * nixos/sourcehut: adopt StateDirectory * Apply suggestions from code review Co-authored-by: Aaron Andersen <aaron@fosslib.net> Co-authored-by: Thibaut Marty <github@thibautmarty.fr> Co-authored-by: malte-v <34393802+malte-v@users.noreply.github.com> * nixos/sourcehut: PR suggestions * nixos/sourcehut: malte-v patch * nixos/sourcehut: add base virtualhost * nixos/sourcehut: remove superfluous key * nixos/sourcehut: use default from cfg * nixos/sourcehut: use originBase for logs * nixos/sourcehut: use toPythonApplication in systemPackages * nixos/sourcehut: directly use ExecStart * nixos/sourcehut: update docs Co-authored-by: Aaron Andersen <aaron@fosslib.net> Co-authored-by: Thibaut Marty <github@thibautmarty.fr> Co-authored-by: malte-v <34393802+malte-v@users.noreply.github.com>
30 lines
904 B
Nix
30 lines
904 B
Nix
import ./make-test-python.nix ({ pkgs, ... }:
|
|
|
|
{
|
|
name = "sourcehut";
|
|
|
|
meta.maintainers = [ pkgs.lib.maintainers.tomberek ];
|
|
|
|
machine = { config, pkgs, ... }: {
|
|
virtualisation.memorySize = 2048;
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
|
|
services.sourcehut = {
|
|
enable = true;
|
|
services = [ "meta" ];
|
|
originBase = "sourcehut";
|
|
settings."sr.ht".service-key = "8888888888888888888888888888888888888888888888888888888888888888";
|
|
settings."sr.ht".network-key = "0000000000000000000000000000000000000000000=";
|
|
settings.webhooks.private-key = "0000000000000000000000000000000000000000000=";
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
machine.wait_for_unit("multi-user.target")
|
|
machine.wait_for_unit("metasrht.service")
|
|
machine.wait_for_open_port(5000)
|
|
machine.succeed("curl -sL http://localhost:5000 | grep meta.sourcehut")
|
|
'';
|
|
})
|