My nix-darwin and NixOS config
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove duplication

-14
-14
home/default.nix
··· 101 101 manual.html.enable = false; 102 102 manual.json.enable = false; 103 103 104 - # ── Developer directory scaffold ─────────────────────────────────────────── 105 - # ~/Developer/Git — clones from github.com/ewanc26 (excl. nix) and any 106 - # Forgejo repos not mirrored from GitHub. 107 - # ~/Developer/Local — private repos synced to Forgejo only. 108 - home.activation.developerDirs = lib.hm.dag.entryAfter [ "writeBoundary" ] '' 109 - for dir in Git Local; do 110 - target="$HOME/Developer/$dir" 111 - if [ ! -d "$target" ]; then 112 - $DRY_RUN_CMD mkdir -p "$target" 113 - echo "developer: created $target" 114 - fi 115 - done 116 - ''; 117 - 118 104 # ── nix-config git repo ──────────────────────────────────────────────────── 119 105 # Ensures ~/.config/nix-config is always a git repo with the correct remotes. 120 106 # Server hosts only use origin (GitHub) — Tangled is for desktop hosts only.