Files
nixos-configs/hosts/pinwheel/modules/age/default.nix
2023-10-26 22:08:19 +02:00

17 lines
271 B
Nix

{ inputs, config, ... }:
let
system = config.config-manager.system;
in
{
age = {
identityPaths = [
"/etc/ssh/pinwheel"
"/home/alex/.ssh/alex.pinwheel"
];
};
environment.systemPackages = [
inputs.agenix.packages."${system}".default
];
}