Skip to content
Commit 5f1ad293 authored by Mathijs Kwik's avatar Mathijs Kwik
Browse files

nixos/docker-registry: allow nested config options

for example:

services.dockerRegistry = {
    enable = true;
    extraConfig = {
        http = {
            host = "https://${config.networking.hostName}:5000";

            tls = {
                certificate = "${registry-tls}/snakeoil.pem";
                key = "${registry-tls}/snakeoil.key";
            };
        };
    };
};
parent 1d1a4bfb
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment