NixOS/modules/scripts/update-dns.nix
2024-06-08 20:02:41 -06:00

14 lines
362 B
Nix

{ config, lib, pkgs, ... }: {
imports = [ ./base.nix ];
config.my.scripts.update-dns = {
enable = true;
install = true;
service = true;
name = "update-dns";
timer = "*:0/30";
description = "Updates the IP of all my domains";
package = pkgs.writeScriptBin "update-dns"
(builtins.readFile ../../scripts/update-dns.sh);
};
}