diff options
author | Franck Cuny <franck@fcuny.net> | 2022-11-21 17:55:14 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-11-30 17:47:00 -0800 |
commit | cd06a48735d2e09e71ba2bf2d91c3407e66ccba1 (patch) | |
tree | 6e3f6fb9ab615cf8c952f67da0080d0fbd9338d9 /nix | |
parent | ref(tools/sendsms): it's been moved to its own repository (diff) | |
download | world-cd06a48735d2e09e71ba2bf2d91c3407e66ccba1.tar.gz |
feat(modules/sensdms): a module to send an SMS
A new module `sendsms` is added to send SMS when the host reboots. It's triggered by systemd when the host boots and once the network is available.
Diffstat (limited to 'nix')
-rw-r--r-- | nix/mkSystem.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nix/mkSystem.nix b/nix/mkSystem.nix index 4debbab..1cb450f 100644 --- a/nix/mkSystem.nix +++ b/nix/mkSystem.nix @@ -17,6 +17,7 @@ inputs.nixpkgs.lib.nixosSystem { overlays = [ inputs.nur.overlay inputs.rust.overlays.default + inputs.sendsms.overlay (final: prev: { tools = import "${self}/tools" { pkgs = prev; inherit naersk; }; |