nu-cli/src/config.rs
Mukan Erkin 0e506c7bc0 feat(nu-cli): initial Faz 0 scaffold
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-24 00:00:26 +03:00

8 lines
177 B
Rust

use std::path::PathBuf;
pub fn keystore_dir() -> PathBuf {
dirs::home_dir()
.unwrap_or_else(|| PathBuf::from("."))
.join(".nu")
.join("keystore")
}