System/machines/oracles/automation.nix

17 lines
477 B
Nix

{ config, lib, pkgs, ... }:
let
repo-updater = pkgs.writeShellScriptBin "repo-updater"
(builtins.readFile ../../scripts/gitea/update-repo.sh);
in {
# Automate updating rust utility flake
systemd.services."rust-util-update" = {
environment = { XDG_RUNTIME_DIR = "/tmp"; };
serviceConfig = {
ExecStart =
"${repo-updater}/bin/repo-updater gitea@git.stranger.systems:nix/Rust.git trunk";
Type = "oneshot";
User = "nathan";
};
};
}