nixos-config/secrets/paperless/default.nix

11 lines
166 B
Nix
Raw Normal View History

{ lib }:
2022-01-11 16:08:21 +01:00
let
inherit (lib)
fileContents
;
in
{
2022-01-11 16:08:21 +01:00
secretKey = fileContents ./secret-key-file.secret;
adminPassword = fileContents ./admin-password.secret;
}