sops: move secrets to relavent services
parent
c0a563278d
commit
d69d821cd3
|
@ -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;
|
defaultSopsFile = ../../secrets.yaml;
|
||||||
validateSopsFiles = false;
|
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 New Issue