feat(flake): add sshKeys arg

This commit is contained in:
ooks-io 2024-06-16 15:40:02 +12:00
parent 2e1a239169
commit 2152c91101
4 changed files with 223 additions and 62 deletions

14
outputs/sshKeys.nix Normal file
View file

@ -0,0 +1,14 @@
let
sshKeys = import ../secrets/keys.nix;
in
{
perSystem = { config, ... }: {
imports = [
{
_module.args.keys = sshKeys;
}
];
};
flake.keys = sshKeys;
}