feat: home dir in app info

This commit is contained in:
Adam
2025-08-28 14:34:20 -05:00
parent 3de1ce467f
commit e37e878e72
4 changed files with 25 additions and 0 deletions
+2
View File
@@ -15,6 +15,7 @@ export namespace App {
hostname: z.string(),
git: z.boolean(),
path: z.object({
home: z.string(),
config: z.string(),
data: z.string(),
root: z.string(),
@@ -75,6 +76,7 @@ export namespace App {
},
git: git !== undefined,
path: {
home: os.homedir(),
config: Global.Path.config,
state: Global.Path.state,
data,