sops: move secrets to relavent services
This commit is contained in:
parent
c0a563278d
commit
d69d821cd3
3 changed files with 26 additions and 15 deletions
|
@ -67,5 +67,15 @@ in
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
sops.secrets =
|
||||
let
|
||||
home = config.home.homeDirectory;
|
||||
in
|
||||
{
|
||||
"private_keys/personal_git" = {
|
||||
path = "${home}/.ssh/personal_git";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -23,21 +23,6 @@ in
|
|||
|
||||
defaultSopsFile = ../../secrets.yaml;
|
||||
validateSopsFiles = false;
|
||||
|
||||
secrets = {
|
||||
"private_keys/personal_git" = {
|
||||
path = "${home}/.ssh/personal_git";
|
||||
};
|
||||
"private_keys/msiserver" = {
|
||||
path = "${home}/.ssh/msiserver";
|
||||
};
|
||||
"private_keys/caveserver" = {
|
||||
path = "${home}/.ssh/caveserver";
|
||||
};
|
||||
"ssh_hosts/caveserver" = {
|
||||
path = "${home}/.ssh/conf.d/caveserver_config";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -38,5 +38,21 @@ in
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
sops.secrets =
|
||||
let
|
||||
home = config.home.homeDirectory;
|
||||
in
|
||||
{
|
||||
"private_keys/msiserver" = {
|
||||
path = "${home}/.ssh/msiserver";
|
||||
};
|
||||
"private_keys/caveserver" = {
|
||||
path = "${home}/.ssh/caveserver";
|
||||
};
|
||||
"ssh_hosts/caveserver" = {
|
||||
path = "${home}/.ssh/conf.d/caveserver_config";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue