mirror of
https://github.com/org-roam/org-roam
synced 2025-08-01 12:17:21 -05:00
Updated for latest Org-roam, and add all relevant information into the new documentation site.
10 lines
115 B
Nix
10 lines
115 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in
|
|
pkgs.mkShell {
|
|
name = "docs";
|
|
buildInput = with pkgs; [
|
|
mkdocs
|
|
];
|
|
}
|