14 lines
223 B
Nix
14 lines
223 B
Nix
{ inputs, config, ... }:
|
|
let
|
|
system = config.config-manager.system;
|
|
in
|
|
{
|
|
age = {
|
|
identityPaths = [ "/etc/ssh/sombrero" ];
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
inputs.agenix.packages."${system}".default
|
|
];
|
|
}
|