nixos/pixiecore: fix apiServer example

Add missing http:// scheme. Without it pixiecore logs this and never
contacts the API server:

  [DHCP] Couldn't get bootspec for [REDACTED_MAC_ADDR]: Get "localhost:8080/v1/boot/[REDACTED_MAC_ADDR]": unsupported protocol scheme "localhost"
This commit is contained in:
Bjørn Forsman
2024-05-11 23:01:35 +02:00
parent c5b216028b
commit 7909e0f7d6
@@ -82,8 +82,8 @@ in
apiServer = mkOption {
type = types.str;
example = "localhost:8080";
description = "host:port to connect to the API. Ignored unless mode is set to 'api'";
example = "http://localhost:8080";
description = "URI to connect to the API. Ignored unless mode is set to 'api'";
};
extraArguments = mkOption {