about summary refs log tree commit diff
path: root/machines/labnet
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-06-27 17:54:44 +0200
committeraszlig <aszlig@redmoonstudios.org>2015-06-27 17:54:44 +0200
commit014e135d97d6c135ae2aad60fbc5fe253632ed96 (patch)
tree060b42054c6530918eefbcd9c19acd24e911a8bb /machines/labnet
parent92e495b6b19afe7b0a5627c0bf6c3cc55b9034dd (diff)
machines/heinrich: Fix module option namespacing.
The machine was using only configuration-internal options, which is why
I missed it when I was introducing a common namespace. Still, the
machine needs to be refactored, but right now I'm just going to give it
a proper namespace in order to fix evaluation of the ISO images.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'machines/labnet')
-rw-r--r--machines/labnet/heinrich.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/machines/labnet/heinrich.nix b/machines/labnet/heinrich.nix
index 3eaddea5..64601314 100644
--- a/machines/labnet/heinrich.nix
+++ b/machines/labnet/heinrich.nix
@@ -21,8 +21,8 @@ let
     };
   };
 
-  internalIf = config.heinrich.internalInterface;
-  externalIf = config.heinrich.externalInterface;
+  internalIf = config.vuizvui.machines.heinrich.internalInterface;
+  externalIf = config.vuizvui.machines.heinrich.externalInterface;
 
   mkRouteConfig = name: cfg: {
     key = "routes-${name}";
@@ -45,7 +45,7 @@ let
 in {
   imports = mapAttrsToList mkRouteConfig routes;
 
-  options.heinrich = {
+  options.vuizvui.machines.heinrich = {
     internalInterface = mkOption {
       type = types.str;
       default = "enp7s0";