sombrero: Add agenix module and use it for pinwheel ssh key

This commit is contained in:
Alexander Heldt
2023-10-24 21:18:47 +02:00
parent 4d078f206f
commit c4cb29014d
16 changed files with 88 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
{ inputs, config, ... }:
let
system = config.config-manager.system;
in
{
age = {
identityPaths = [ "/etc/ssh/sombrero" ];
};
environment.systemPackages = [
inputs.agenix.packages."${system}".default
];
}