blob: 3acae0d1dea89cb4f8e1afb48aeea25193c8d01f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, ... }:
{
sops = {
defaultSopsFile = ../../secrets/${config.networking.hostName}.yaml;
secrets = {
"ghcr/user" = { };
"ghcr/password" = { };
tailscale_authentication_key = { };
};
};
}
|