nixfiles/config/services/update-nixfiles.nix

12 lines
430 B
Nix
Raw Normal View History

2024-05-16 17:07:39 +02:00
{ config, ... }:{
sops.secrets."services/update-nixfiles/privateKey" = {
owner = "update-nixfiles";
sopsFile = ../../secrets/services/update-nixfiles.yaml;
};
kyouma.update-nixfiles = {
enable = true;
privateKey = config.sops.secrets."services/update-nixfiles/privateKey".path;
signingKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINeGC9ezGSZFXokVfQ6ETnn94xLwi1VVhWol2WEjQI35 update-nixfiles@seras";
};
}