From 3a7506c30d2a7b4de6d181bc0c5e290d5bfc24c6 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Mon, 17 May 2021 21:20:41 -0400 Subject: [PATCH] openstack is banned Signed-off-by: Christine Dodrill --- nixos.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos.go b/nixos.go index 7b06079..269352f 100644 --- a/nixos.go +++ b/nixos.go @@ -4,7 +4,7 @@ import "path/filepath" func mkNixOSImage(configFname, cacheDir, vmID string) (string, error) { outputFname := filepath.Join(cacheDir, "nixos", vmID) - err := run("nix-shell", "-p", "nixos-generators", "--run", "nixos-generate -f openstack -o "+outputFname+" -c "+configFname) + err := run("nix-shell", "-p", "nixos-generators", "--run", "nixos-generate -f qcow -o "+outputFname+" -c "+configFname) if err != nil { return "", err }