diff options
| -rw-r--r-- | nix/iso.nix | 1 | ||||
| -rw-r--r-- | nix/rootfs.nix | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/nix/iso.nix b/nix/iso.nix index b27924d..3c220a2 100644 --- a/nix/iso.nix +++ b/nix/iso.nix @@ -5,6 +5,7 @@ stdenv.mkDerivation { src = ./.; buildPhase = '' echo "todo actually build iso" + mkdir -p $out ''; installPhase = '' echo "todo actually install iso" diff --git a/nix/rootfs.nix b/nix/rootfs.nix index f8b2951..4a771be 100644 --- a/nix/rootfs.nix +++ b/nix/rootfs.nix @@ -5,6 +5,7 @@ stdenv.mkDerivation { src = ./.; buildPhase = '' echo "todo actually build rootfs" + mkdir -p $out ''; installPhase = '' echo "todo actually install rootfs" |
