Add homelab project and reorganize project configuration
- Add homelab project for Homelab Deployment with basic template - Reorganize projects.nix with better grouping: - Configuration projects first (nix-config, homelab) - Development projects (blog, homepage) - Research projects (mdshortcut, daki3) - Update generated projects.json with new structure 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
2d80c0e50f
commit
800ac5c4ab
2 changed files with 24 additions and 17 deletions
|
|
@ -1 +1 @@
|
|||
/nix/store/qsa91a8niihfi6wl63l8mdqgvlb74y2k-home-manager-files/.config/nix/config/projects.json
|
||||
/nix/store/mc3gds15p0vk8xkfnsy1zcckk519sdak-home-manager-files/.config/nix/config/projects.json
|
||||
|
|
@ -1,5 +1,19 @@
|
|||
{
|
||||
projects = {
|
||||
nix-config = {
|
||||
template = "basic";
|
||||
name = "nix";
|
||||
codePath = "/Users/yanlin/.config/nix";
|
||||
description = "Nix configuration";
|
||||
};
|
||||
|
||||
homelab = {
|
||||
template = "basic";
|
||||
name = "homelab";
|
||||
codePath = "/Users/yanlin/Documents/Projects/Homelab-deploy";
|
||||
description = "Homelab Deployment";
|
||||
};
|
||||
|
||||
blog = {
|
||||
template = "content";
|
||||
name = "blog";
|
||||
|
|
@ -8,6 +22,13 @@
|
|||
description = "Personal blog project";
|
||||
};
|
||||
|
||||
homepage = {
|
||||
template = "basic";
|
||||
name = "homepage";
|
||||
codePath = "/Users/yanlin/Documents/Projects/Homepage/";
|
||||
description = "Personal Homepage";
|
||||
};
|
||||
|
||||
mdshortcut = {
|
||||
template = "research";
|
||||
name = "MDShortcut";
|
||||
|
|
@ -16,20 +37,6 @@
|
|||
description = "Material Design Shortcut research project";
|
||||
};
|
||||
|
||||
nix-config = {
|
||||
template = "basic";
|
||||
name = "nix";
|
||||
codePath = "/Users/yanlin/.config/nix";
|
||||
description = "Nix configuration";
|
||||
};
|
||||
|
||||
homepage = {
|
||||
template = "basic";
|
||||
name = "homepage";
|
||||
codePath = "/Users/yanlin/Documents/Projects/Homepage/";
|
||||
description = "Personal Homepage";
|
||||
};
|
||||
|
||||
daki3 = {
|
||||
template = "basic";
|
||||
name = "DAKI3";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue