infra/shells/default/default.nix

18 lines
346 B
Nix
Raw Normal View History

# 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
];
}