public func getHome(username: String) throws -> DirectoryPath {
    let info = try getUserInfo(username: username)
    return try DirectoryPath(String(cString: info.pw_dir)) ?! UserInfoError.invalidHomeDirectory
}