nixos/pkgs/generate-server-certificate.nix

19 lines
269 B
Nix
Raw Normal View History

2023-09-21 16:05:17 +02:00
{
writeShellApplication,
openssl,
git,
sops,
pass,
...
}:
writeShellApplication {
name = "generate-server-certificate";
runtimeInputs = [
openssl
git
sops
pass
];
text = builtins.readFile ../scripts/generate-server-certificate.sh;
}