feat(user): add .keep file to git directory

Added a `.keep` file to the `git` directory to ensure its presence in the user's home structure. This aligns with the convention of maintaining stub files for empty directories.
This commit is contained in:
Harald Hoyer 2025-01-10 16:57:12 +01:00
parent 53ff9f2411
commit 6f25c0c2f3

View file

@ -70,6 +70,7 @@ in
"Pictures/.keep".text = ""; "Pictures/.keep".text = "";
"Videos/.keep".text = ""; "Videos/.keep".text = "";
"work/.keep".text = ""; "work/.keep".text = "";
"git/.keep".text = "";
".face".source = cfg.icon; ".face".source = cfg.icon;
"Pictures/${cfg.icon.fileName or (builtins.baseNameOf cfg.icon)}".source = cfg.icon; "Pictures/${cfg.icon.fileName or (builtins.baseNameOf cfg.icon)}".source = cfg.icon;
}; };