usestd::path::PathBuf;usedirs::home_dir;usecrate::result::{NibbError, NibbResult};/// Get the path to the main Nibb directory
pubfnget_nibb_dir()->NibbResult<PathBuf>{Ok(home_dir().ok_or(NibbError::NotFound("home directory".to_string()))?.join(".nibb"))}