Skip to content

Commit a3203dd

Browse files
authored
Rename '.stackpanel' to '.stack' in paths.nix
1 parent 6197924 commit a3203dd

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

nix/stackpanel/lib/paths.nix

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
# IMPORTANT: NAMING CONVENTIONS
88
# -----------------------------
99
# This library uses SUBDIRECTORY NAMES, not full paths:
10-
# - rootDir = ".stackpanel" (the stackpanel home directory)
11-
# - stateDir = "state" (subdirectory name, NOT ".stackpanel/state")
12-
# - genDir = "gen" (subdirectory name, NOT ".stackpanel/gen")
10+
# - rootDir = ".stack" (the stackpanel home directory)
11+
# - stateDir = "state" (subdirectory name, NOT ".stack/state")
12+
# - genDir = "gen" (subdirectory name, NOT ".stack/gen")
1313
#
1414
# Full paths are computed as: $root/${rootDir}/${stateDir}
15-
# For example: /path/to/project/.stackpanel/state
15+
# For example: /path/to/project/.stack/state
1616
#
17-
# If you're getting duplicate path segments like ".stackpanel/.stackpanel/state",
17+
# If you're getting duplicate path segments like ".stack/.stack/state",
1818
# you're passing a full path where a subdirectory name is expected!
1919
#
2020
# Features:
@@ -26,7 +26,7 @@
2626
# Usage in Nix modules:
2727
# let pathsLib = import ./paths.nix { inherit lib; };
2828
# in pathsLib.mkShellPathUtils {
29-
# rootDir = ".stackpanel"; # The home directory
29+
# rootDir = ".stack"; # The home directory
3030
# stateDir = "state"; # SUBDIRECTORY NAME, not full path!
3131
# genDir = "gen"; # SUBDIRECTORY NAME, not full path!
3232
# }
@@ -38,7 +38,7 @@
3838
{lib}: let
3939
# Default configuration (can be overridden)
4040
defaults = {
41-
rootDir = ".stackpanel";
41+
rootDir = ".stack";
4242
stateDir = "state";
4343
genDir = "gen";
4444
};

0 commit comments

Comments
 (0)