2024-06-12 09:54:11 +07:00
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
|
|
sops = {
|
2024-06-12 18:15:03 +07:00
|
|
|
defaultSopsFile = ../secrets/secrets.yaml;
|
2024-06-12 09:54:11 +07:00
|
|
|
defaultSopsFormat = "yaml";
|
|
|
|
age.keyFile = "/home/${config.home.username}/.config/sops/age/keys.txt";
|
|
|
|
|
|
|
|
secrets = {
|
|
|
|
"docker/config" = {
|
|
|
|
path = "${config.home.homeDirectory}/.docker/config.json";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|