9 lines
189 B
Nix
9 lines
189 B
Nix
# Declarative web store config.
|
|
# Keep only root declarations here; parsing/loading happens in intermediate/web.nix.
|
|
rec {
|
|
stores = {
|
|
home = {
|
|
root = ../data/web;
|
|
};
|
|
};
|
|
}
|