14 lines
226 B
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
|
|
];
|
|
}
|