From 21f87630cb830bf84441a067595c49a6d9be1e1e Mon Sep 17 00:00:00 2001 From: Jonas Juselius Date: Fri, 30 Oct 2020 17:04:18 +0100 Subject: [PATCH] Enable bios --- clusters/k0/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/clusters/k0/default.nix b/clusters/k0/default.nix index 219eb1a..59d7ee1 100644 --- a/clusters/k0/default.nix +++ b/clusters/k0/default.nix @@ -1,12 +1,16 @@ with import {}; 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;