11 lines
166 B
Nix
11 lines
166 B
Nix
{ lib }:
|
|
let
|
|
inherit (lib)
|
|
fileContents
|
|
;
|
|
in
|
|
{
|
|
secretKey = fileContents ./secret-key-file.secret;
|
|
adminPassword = fileContents ./admin-password.secret;
|
|
}
|