Skyler Grey
919b3c4e73
Agenix-rekey is a project which uses rage to encrypt secrets for hosts where they're needed. We'll need it for a future commit with buildbot
18 lines
346 B
Nix
18 lines
346 B
Nix
# SPDX-FileCopyrightText: 2024 Auxolotl Infrastructure Contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
{
|
|
mkShell,
|
|
reuse,
|
|
deploy-rs,
|
|
agenix-rekey,
|
|
}:
|
|
mkShell {
|
|
packages = [
|
|
reuse # Used to provide licenses & copyright attribution
|
|
deploy-rs # Used to deploy to our servers
|
|
agenix-rekey # Used to manage secrets
|
|
];
|
|
}
|