plugin の config を保存する方法

プラグイン内に、以下のようなコードを書くことで、config 値が保存される。値は、/user/(your-hostname)/ フォルダ内に保存される。これ、本当は、/user/env/(your-hostname)/ フォルダに保存されるべきじゃないのかなぁ?とか思ったり?

public function hello()
    {       
        $c = $this->config->get('plugins.hello.count');
        $this->config->set('plugins.hello.count', 1);
        $this->saveConfig('hello');
        return 'hellox' . $c;
    }