From 544cacdc35bfd9be985117e9d29ae843fc8f4ff6 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 27 Sep 2019 12:22:52 -0400
Subject: [PATCH] configure the issuer to really do Ristretto

---
 nixos/modules/tests/private-storage.nix | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/nixos/modules/tests/private-storage.nix b/nixos/modules/tests/private-storage.nix
index f719d22a..e17f8b49 100644
--- a/nixos/modules/tests/private-storage.nix
+++ b/nixos/modules/tests/private-storage.nix
@@ -69,7 +69,16 @@ import <nixpkgs/nixos/tests/make-test.nix> {
     { imports =
       [ ../issuer.nix
       ];
-      services.private-storage-issuer.enable = true;
+      services.private-storage-issuer = {
+        enable = true;
+        issuer = "Ristretto";
+        # Notionally, this is a secret key.  This is only the value for this
+        # system test though so I don't care if it leaks to the world at
+        # large.
+        ristrettoSigningKey = "wumQAfSsJlQKDDSaFN/PZ3EbgBit8roVgfzllfCK2gQ=";
+      };
+
+
 
     } // networkConfig;
   };
-- 
GitLab