nixos-config/hosts/defiant/services/dyndns.nix

12 lines
223 B
Nix
Raw Permalink Normal View History

2024-09-08 00:29:36 +02:00
{ config, pkgs, lib, ... }:
{
sops.secrets."domeneshop/netrc" = { };
2024-09-08 00:29:36 +02:00
services.domeneshop-dyndns = {
enable = true;
domain = "site3.feal.no";
netrcFile = config.sops.secrets."domeneshop/netrc".path;
2024-09-08 00:29:36 +02:00
};
}