- Add newt service definitions and corresponding nix modules - Replace caddy configurations across cloud, komo, proxy, and sock hosts with newt - Implement compose configurations for pangolin in proxy host - Update adguard naming and systemd service definitions - Refresh secrets with newt and pangolin credentials
11 lines
159 B
Nix
11 lines
159 B
Nix
{ config, ... }:
|
|
let
|
|
cfg = config.secretsSpec.docker.newt-sock;
|
|
in
|
|
{
|
|
services.newt = {
|
|
enable = true;
|
|
id = cfg.ID;
|
|
secret = cfg.SECRET;
|
|
};
|
|
}
|