dot.nix/hosts/x86/proxy/config/newt.nix

11 lines
160 B
Nix

{ config, ... }:
let
cfg = config.secretsSpec.docker.newt-proxy;
in
{
services.newt = {
enable = true;
id = cfg.ID;
secret = cfg.SECRET;
};
}