Skip to content
Snippets Groups Projects
Commit d0bf5393 authored by Florian Sesser's avatar Florian Sesser
Browse files

Fix prod deployment: Nix liked to be looking in the wrong folder

Closes #143.
Thanks to http://nixos.wiki/wiki/Nix_Language:_Tips_%26_Tricks for
inspiration.
parent b4903b0e
No related branches found
No related tags found
No related merge requests found
Pipeline #5520 passed
......@@ -62,8 +62,8 @@ let
defineStorageNode = name: { vpnIP, stateVersion }:
let
nodecfg = import "${./.}/${name}-config.nix";
hardware ="${./.}/${name}-hardware.nix";
nodecfg = import (./. + "/${name}-config.nix");
hardware = import (./. + "/${name}-hardware.nix");
in {
imports = [
# Get some of the very lowest-level system configuration for this
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment