summaryrefslogtreecommitdiffstats
path: root/src/configs/username.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/configs/username.rs')
-rw-r--r--src/configs/username.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/configs/username.rs b/src/configs/username.rs
index 2b96b76b0..42c83552f 100644
--- a/src/configs/username.rs
+++ b/src/configs/username.rs
@@ -1,8 +1,9 @@
use crate::config::ModuleConfig;
+use serde::Serialize;
use starship_module_config_derive::ModuleConfig;
-#[derive(Clone, ModuleConfig)]
+#[derive(Clone, ModuleConfig, Serialize)]
pub struct UsernameConfig<'a> {
pub format: &'a str,
pub style_root: &'a str,