19 lines
269 B
Nix
19 lines
269 B
Nix
|
{
|
||
|
writeShellApplication,
|
||
|
openssl,
|
||
|
git,
|
||
|
sops,
|
||
|
pass,
|
||
|
...
|
||
|
}:
|
||
|
writeShellApplication {
|
||
|
name = "generate-server-certificate";
|
||
|
runtimeInputs = [
|
||
|
openssl
|
||
|
git
|
||
|
sops
|
||
|
pass
|
||
|
];
|
||
|
text = builtins.readFile ../scripts/generate-server-certificate.sh;
|
||
|
}
|