webstie changes
This commit is contained in:
Generated
+3
-3
@@ -62,11 +62,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1737498153,
|
"lastModified": 1737502356,
|
||||||
"narHash": "sha256-sLQ8e5MyKMPqiPkkOW3cdNdgyJvTvmnZC8e1YCu1TYg=",
|
"narHash": "sha256-IF8rpMs63pPu+EvLRQ1mfyc1EZHP7BNeK3dN048tf1U=",
|
||||||
"owner": "rasmus-kirk",
|
"owner": "rasmus-kirk",
|
||||||
"repo": "website-builder",
|
"repo": "website-builder",
|
||||||
"rev": "839d95ce9e52fb93be15272b0870c546275b7b2d",
|
"rev": "d9fc8c15f297fa7a588b3ca251ef77e1f0c6ebb5",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -52,35 +52,49 @@
|
|||||||
|
|
||||||
packages = forAllSystems ({pkgs}: let
|
packages = forAllSystems ({pkgs}: let
|
||||||
website = website-builder.lib {
|
website = website-builder.lib {
|
||||||
pkgs = pkgs;
|
pkgs = pkgs;
|
||||||
src = "${self}";
|
src = "${self}";
|
||||||
headerTitle = "Nixarr";
|
headerTitle = "Nixarr";
|
||||||
standalonePages = [{
|
standalonePages = [
|
||||||
|
{
|
||||||
title = "Nixarr - Media Server Nixos Module";
|
title = "Nixarr - Media Server Nixos Module";
|
||||||
inputFile = ./README.md;
|
inputFile = ./README.md;
|
||||||
outputFile = "index.html";
|
outputFile = "index.html";
|
||||||
}];
|
}
|
||||||
includedDirs = [ "docs" ];
|
];
|
||||||
articleDirs = [ "docs/wiki" ];
|
includedDirs = ["docs"];
|
||||||
navbar = [
|
articleDirs = ["docs/wiki"];
|
||||||
{ title = "Home"; location = "/"; }
|
navbar = [
|
||||||
{ title = "Options"; location = "/nixos-options"; }
|
{
|
||||||
{ title = "Wiki"; location = "/wiki"; }
|
title = "Home";
|
||||||
{ title = "Github"; location = "https://github.com/rasmus-kirk/nixarr"; }
|
location = "/";
|
||||||
];
|
}
|
||||||
favicons = {
|
{
|
||||||
# For all browsers
|
title = "Options";
|
||||||
"16x16" = "/docs/img/favicons/16x16.png";
|
location = "/nixos-options";
|
||||||
"32x32" = "/docs/img/favicons/32x32.png";
|
}
|
||||||
# For Google and Android
|
{
|
||||||
"48x48" = "/docs/img/favicons/48x48.png";
|
title = "Wiki";
|
||||||
"192x192" = "/docs/img/favicons/192x192.png";
|
location = "/wiki";
|
||||||
# For iPad
|
}
|
||||||
"167x167" = "/docs/img/favicons/167x167.png";
|
{
|
||||||
# For iPhone
|
title = "Github";
|
||||||
"180x180" = "/docs/img/favicons/180x180.png";
|
location = "https://github.com/rasmus-kirk/nixarr";
|
||||||
};
|
}
|
||||||
nixosModules = ./nixarr;
|
];
|
||||||
|
favicons = {
|
||||||
|
# For all browsers
|
||||||
|
"16x16" = "/docs/img/favicons/16x16.png";
|
||||||
|
"32x32" = "/docs/img/favicons/32x32.png";
|
||||||
|
# For Google and Android
|
||||||
|
"48x48" = "/docs/img/favicons/48x48.png";
|
||||||
|
"192x192" = "/docs/img/favicons/192x192.png";
|
||||||
|
# For iPad
|
||||||
|
"167x167" = "/docs/img/favicons/167x167.png";
|
||||||
|
# For iPhone
|
||||||
|
"180x180" = "/docs/img/favicons/180x180.png";
|
||||||
|
};
|
||||||
|
nixosModules = ./nixarr;
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
default = website.package;
|
default = website.package;
|
||||||
|
|||||||
Reference in New Issue
Block a user