nixos/modules/server/ddclient.nix

15 lines
292 B
Nix
Raw Normal View History

2025-01-02 13:08:10 +04:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.void.server.ddclient;
in {
options.void.server.ddclient = { enable = mkEnableOption false; };
config = mkIf cfg.enable {
services.ddclient = {
enable = true;
configFile = "/srv/secrets/ddclient.conf";
};
};
}