11 lines
163 B
Nix
11 lines
163 B
Nix
{ lib }:
|
|
let
|
|
inherit (lib)
|
|
fileContents
|
|
;
|
|
in
|
|
{
|
|
boreal-repo = fileContents ./boreal-repo.secret;
|
|
poseidon-repo = fileContents ./poseidon-repo.secret;
|
|
}
|