add release-unstable.nix

auto-flake-update
Yorick van Pelt 2017-02-02 23:14:55 +01:00
parent 5cb4dc11c0
commit 8e8697255e
2 changed files with 27 additions and 0 deletions

9
release-unstable.nix Normal file
View File

@ -0,0 +1,9 @@
let
nixos = import <nixpkgs/nixos>;
nixpkgs = import <nixpkgs> {};
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;
}

18
secrets_dummy.nix Normal file
View File

@ -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";
};
}