From 8e8697255ee0bb2c9ea648349dd535ac2500226e Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Thu, 2 Feb 2017 23:14:55 +0100 Subject: [PATCH] add release-unstable.nix --- release-unstable.nix | 9 +++++++++ secrets_dummy.nix | 18 ++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 release-unstable.nix create mode 100644 secrets_dummy.nix diff --git a/release-unstable.nix b/release-unstable.nix new file mode 100644 index 0000000..7662f1a --- /dev/null +++ b/release-unstable.nix @@ -0,0 +1,9 @@ +let + nixos = import ; + nixpkgs = import {}; + nixosFor = path: nixos {configuration = import path;}; +in +{ + ascanius = nixpkgs.lib.hydraJob (nixosFor ./logical/ascanius.nix).system; + jarvis = nixpkgs.lib.hydraJob (nixosFor ./logical/jarvis.nix).system; +} diff --git a/secrets_dummy.nix b/secrets_dummy.nix new file mode 100644 index 0000000..eb33136 --- /dev/null +++ b/secrets_dummy.nix @@ -0,0 +1,18 @@ +{ + pennyworth_hashedPassword = ""; + yorick_hashedPassword = ""; + tor_hostnames = { + "ssh.pennyworth" = "q.onion"; + "ssh.frumar" = "q.onion"; + "ssh.woodhouse" = "q.onion"; + "ssh.ascanius" = "q.onion"; + }; + hostnames = { + frumar = "q"; + ospinio = "q"; + ascanius = "q"; + pennyworth = "q"; + woodhouse = "q"; + jarvis = "q"; + }; +}