From 5ceeba933aa2eb74f68efc324ec131e822a24ab6 Mon Sep 17 00:00:00 2001 From: kat witch Date: Tue, 6 Jul 2021 01:47:58 +0100 Subject: [PATCH] Dummy config needs a meta stub and to be imported for yggdrassil. --- config/hosts/dummy/meta.nix | 8 ++++++++ default.nix | 1 + 2 files changed, 9 insertions(+) create mode 100644 config/hosts/dummy/meta.nix diff --git a/config/hosts/dummy/meta.nix b/config/hosts/dummy/meta.nix new file mode 100644 index 00000000..1fb303cc --- /dev/null +++ b/config/hosts/dummy/meta.nix @@ -0,0 +1,8 @@ +{ lib, config, ... }: with lib; { + network.nodes.mabon = { + imports = lib.hostImport "mabon"; + networking = { + hostName = "mabon"; + }; + }; +} diff --git a/default.nix b/default.nix index d394fc40..4bacbfc0 100644 --- a/default.nix +++ b/default.nix @@ -30,6 +30,7 @@ let metaConfig ./config/targets ./config/modules/meta/default.nix + ./config/hosts/dummy/meta.nix ./config/hosts/athame/meta.nix ./config/hosts/samhain/meta.nix ./config/hosts/yule/meta.nix