Files
nixos/modules/server/ddclient.nix
2025-08-30 20:31:10 +02:00

17 lines
253 B
Nix

{ pkgs, config, lib, inputs, ...}:
{
imports =
[
#inputs.sops-nix.nixosModules.sops
];
# also one can access the path and then cat it
services.ddclient = {
enable = true;
configFile = config.sops.templates."ddclient-temp".path;
};
}