nixos/modules/base/agenix.nix

26 lines
801 B
Nix
Raw Normal View History

2024-03-05 22:57:41 +01:00
{
agenix,
pkgs,
...
}: {
2024-02-24 02:11:59 +01:00
# Agenix manages the deployment of secrets by public-key encrypting them to
# each system's ssh host key. See the README for more information.
# https://github.com/ryantm/agenix
2024-06-27 20:37:34 +02:00
# https://wiki.nixos.org/wiki/Comparison_of_secret_managing_schemes
2024-02-24 02:11:59 +01:00
imports = [
agenix.nixosModules.default
];
# Agenix attempts to decrypt secrets before impermanence symlinks the ssh
# host key. Refer directly to the key on the persistent partition, which is
# mounted in stage 1 of the boot process, before agenix runs.
# https://github.com/ryantm/agenix/issues/45#issuecomment-901383985
2024-03-05 22:57:41 +01:00
age.identityPaths = ["/nix/persist/etc/ssh/ssh_host_ed25519_key"];
2024-02-24 02:11:59 +01:00
# `agenix` cli tool
environment.systemPackages = [
agenix.packages.${pkgs.system}.default
];
}