flake/modules/nixos/system/agenix.nix
2025-10-19 16:13:59 +03:00

10 lines
289 B
Nix

{ lib, config, ... }:
{
config = lib.mkIf config.osbmModules.agenix.enable {
# Agenix will be configured via the agenix input
# This module exists to enable agenix-related configurations
age.identityPaths = lib.mkDefault [
"/etc/ssh/ssh_host_ed25519_key"
];
};
}