Enable bios

This commit is contained in:
Jonas Juselius
2020-10-30 17:04:18 +01:00
parent 9d6245c111
commit 21f87630cb

View File

@@ -1,12 +1,16 @@
with import <nixpkgs> {};
let
lib = import ../../lib/default.nix { inherit pkgs cfg lib config; };
lib = import ../../lib/default.nix { inherit pkgs cfg customize lib config; };
hosts = [
{ name = "k0-1"; address = "10.253.18.101"; hw = ./k0-1.nix; }
{ name = "k0-2"; address = "10.253.18.102"; hw = ./k0-2.nix; }
];
customize = {
boot.bios = true;
};
cfg = {
clusterName = "k0";
initca = ./ca;