11 lines
160 B
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;
|
|
};
|
|
}
|