mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
docs: rename "doc" directory to "docs"
Also remove `CONTRIBUTING.adoc` and `FAQ.adoc` from project root since GitHub knows to pick them up from the docs directory. Fixes #2273
This commit is contained in:
parent
ad0fc085c7
commit
7ef3db3730
22 changed files with 4 additions and 6 deletions
4
.github/PULL_REQUEST_TEMPLATE.md
vendored
4
.github/PULL_REQUEST_TEMPLATE.md
vendored
|
@ -15,7 +15,7 @@ pull-request.
|
||||||
|
|
||||||
Also make sure to read the guidelines found at
|
Also make sure to read the guidelines found at
|
||||||
|
|
||||||
https://github.com/nix-community/home-manager/blob/master/doc/contributing.adoc#sec-guidelines
|
https://github.com/nix-community/home-manager/blob/master/docs/contributing.adoc#sec-guidelines
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ Also make sure to read the guidelines found at
|
||||||
{long description}
|
{long description}
|
||||||
```
|
```
|
||||||
|
|
||||||
See [CONTRIBUTING](https://github.com/nix-community/home-manager/blob/master/doc/contributing.adoc#sec-commit-style) for more information and [recent commit messages](https://github.com/nix-community/home-manager/commits/master) for examples.
|
See [CONTRIBUTING](https://github.com/nix-community/home-manager/blob/master/docs/contributing.adoc#sec-commit-style) for more information and [recent commit messages](https://github.com/nix-community/home-manager/commits/master) for examples.
|
||||||
|
|
||||||
- If this PR adds a new module
|
- If this PR adds a new module
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
doc/contributing.adoc
|
|
1
FAQ.adoc
1
FAQ.adoc
|
@ -1 +0,0 @@
|
||||||
doc/faq.adoc
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs ? import <nixpkgs> { } }:
|
{ pkgs ? import <nixpkgs> { } }:
|
||||||
|
|
||||||
rec {
|
rec {
|
||||||
docs = with import ./doc { inherit pkgs; }; {
|
docs = with import ./docs { inherit pkgs; }; {
|
||||||
html = manual.html;
|
html = manual.html;
|
||||||
manPages = manPages;
|
manPages = manPages;
|
||||||
json = options.json;
|
json = options.json;
|
||||||
|
|
|
@ -6,7 +6,7 @@ let
|
||||||
|
|
||||||
cfg = config.manual;
|
cfg = config.manual;
|
||||||
|
|
||||||
docs = import ../doc { inherit lib pkgs; };
|
docs = import ../docs { inherit lib pkgs; };
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue