1
0
Fork 0

Save app nix description to config directory

master
dump_stack() 2019-12-30 13:41:33 +00:00
parent f18d55bd27
commit 6ebc562599
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
2 changed files with 13 additions and 1 deletions

View File

@ -46,6 +46,8 @@ func getAppVMExpressionPath(name string) (paths []string, config string) {
paths = strings.Split(os.Getenv("NIX_PATH"), ":")
config = "nix/" + name + ".nix"
paths = append(paths, configDir)
for _, a := range paths {
searchpath := a
log.Print("Searching " + searchpath + " for expressions")

View File

@ -88,6 +88,16 @@ func generate(l *libvirt.Libvirt, name, bin string) {
}
realName := strings.Split(name, ".")[1]
appFilename := configDir + "/nix/" + realName + ".nix"
fmt.Printf(template, realName, bin)
appNixConfig := fmt.Sprintf(template, realName, bin)
err = ioutil.WriteFile(appFilename, []byte(appNixConfig), 0600)
if err != nil {
log.Println(err)
return
}
fmt.Print(appNixConfig + "\n")
log.Println("Configuration file is saved to", appFilename)
}