//go:build darwin package config import ( "os" "path/filepath" ) func platformNavisDir() (string, bool) { base, err := os.UserConfigDir() if err != nil { return "", false } return filepath.Join(base, "Navis"), true }