Files
nixos-configs/hosts/pinwheel/modules/age/default.nix
2026-01-03 16:41:41 +01:00

18 lines
326 B
Nix

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