12 lines
270 B
Nix
12 lines
270 B
Nix
|
{ keyCommandEnv, ... }:
|
||
|
{
|
||
|
deployment.keys."searx-secret-key.secret" = {
|
||
|
keyCommand = keyCommandEnv ++ [ "pass" "searx/secret-key" ];
|
||
|
destDir = "/secrets";
|
||
|
user = "root";
|
||
|
group = "root";
|
||
|
permissions = "0640";
|
||
|
uploadAt = "pre-activation";
|
||
|
};
|
||
|
}
|