8 lines
222 B
Nix
8 lines
222 B
Nix
{lib}: {
|
|
callFragment = import ./callFragment.nix {inherit lib;};
|
|
|
|
nixosSystems = lib.callFragment ./nixosSystems.nix {};
|
|
sshKeys = lib.callFragment ./sshKeys.nix {};
|
|
secrets = lib.callFragment ./secrets.nix {};
|
|
}
|