summaryrefslogtreecommitdiff
path: root/sys/pki/certs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'sys/pki/certs.nix')
-rw-r--r--sys/pki/certs.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/sys/pki/certs.nix b/sys/pki/certs.nix
deleted file mode 100644
index c191fc5..0000000
--- a/sys/pki/certs.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- config.local.pki.ca = {
- home = {
- crl = ./public/home-crl.pem;
- cert = ./public/home-ca.pem;
- issuer = "root";
-
- leaves = {
- user-firefox.cert = ./public/home-user-firefox.pem;
- };
- };
-
- mail = {
- crl = ./public/mail-crl.pem;
- cert = ./public/mail-ca.pem;
- issuer = "root";
-
- leaves = {
- kiev.cert = ./public/mail-kiev.pem;
- larsa.cert = ./public/mail-larsa.pem;
- };
- };
-
- root = {
- crl = ./public/root-crl.pem;
- cert = ./public/root-ca.pem;
- issuer = null;
- leaves = { };
- };
- };
-}