Files
nixos-configs/hosts/pinwheel/modules/age/default.nix
2023-11-29 15:15:16 +01:00

18 lines
315 B
Nix

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