18 lines
300 B
Nix
18 lines
300 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: let
|
||
|
cfg = config.marleyos.services.ddclient;
|
||
|
in {
|
||
|
options.marleyos.services.ddclient.enable = lib.mkEnableOption "ddclient";
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
services.ddclient = {
|
||
|
enable = true;
|
||
|
|
||
|
configFile = /home/marley/ddclient.conf;
|
||
|
};
|
||
|
};
|
||
|
}
|