2
2
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2025-01-22 09:54:46 +01:00
nixos-config/hosts/defiant/services/dyndns.nix

12 lines
223 B
Nix
Raw 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
};
}