Files
nixos-configs/hosts/pinwheel/modules/age/default.nix

14 lines
226 B
Nix

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