pkgs/nixfiles: rename nixfiles-updated-inputs to clerie-update-nixfiles
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
systemd.services.nixfiles-updated-inputs = {
|
||||
systemd.services.clerie-update-nixfiles = {
|
||||
environment = {
|
||||
GIT_SSH_COMMAND = "ssh -o UserKnownHostsFile=${pkgs.writeText "known_hosts" "git.clerie.de ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIHQDwfRlw6L+pkLjXDgW2BUWlY1zNEDtVhNEsClgqaL"} -i %d/nixfiles-updated-inputs-ssh";
|
||||
GIT_SSH_COMMAND = "ssh -o UserKnownHostsFile=${pkgs.writeText "known_hosts" "git.clerie.de ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIHQDwfRlw6L+pkLjXDgW2BUWlY1zNEDtVhNEsClgqaL"} -i %d/clerie-update-nixfiles-ssh";
|
||||
# nix likes a home directory to place the cache there
|
||||
HOME = "/var/lib/nixfiles-updated-inputs";
|
||||
HOME = "/var/lib/clerie-update-nixfiles";
|
||||
};
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
ExecStart = pkgs.nixfiles-updated-inputs + "/bin/nixfiles-updated-inputs";
|
||||
StateDirectory = "nixfiles-updated-inputs";
|
||||
WorkingDirectory = "/var/lib/nixfiles-updated-inputs";
|
||||
ExecStart = pkgs.clerie-update-nixfiles + "/bin/clerie-update-nixfiles";
|
||||
StateDirectory = "clerie-update-nixfiles";
|
||||
WorkingDirectory = "/var/lib/clerie-update-nixfiles";
|
||||
DynamicUser = true;
|
||||
# this sets the correct file permissions for the ssh key because we use DynamicUser
|
||||
LoadCredential = "nixfiles-updated-inputs-ssh:${config.age.secrets."nixfiles-updated-inputs-ssh".path}";
|
||||
LoadCredential = "clerie-update-nixfiles-ssh:${config.age.secrets."clerie-update-nixfiles-ssh".path}";
|
||||
};
|
||||
startAt = "*-*-* 03:03:00";
|
||||
};
|
||||
|
Reference in New Issue
Block a user