8 lines
271 B
Nix
8 lines
271 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
age = {
|
|
identityPaths = [ "/root/.ssh/id_rsa" ];
|
|
secrets.monolith-forgejo-runner-token.file = ../secrets/monolith-forgejo-runner-token.age;
|
|
secrets.monolith-nix-serve-privkey.file = ../secrets/monolith-nix-serve-privkey.age;
|
|
};
|
|
}
|