6 lines
124 B
Nix
6 lines
124 B
Nix
let
|
|
sshKeys = import ../secrets/keys.nix;
|
|
in {
|
|
perSystem = _: {_module.args.keys = sshKeys;};
|
|
flake.keys = sshKeys;
|
|
}
|