feat(rrv.sh): add rrv.sh package and move website to package
This commit is contained in:
parent
5f7cfd5d24
commit
c79de25dce
3 changed files with 15 additions and 2 deletions
12
packages/rrv.sh/default.nix
Normal file
12
packages/rrv.sh/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ stdenv, ... }:
|
||||||
|
let
|
||||||
|
name = "rrv.sh";
|
||||||
|
version = "0.0.1";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
inherit name version;
|
||||||
|
src = ./.;
|
||||||
|
installPhase = ''
|
||||||
|
cp -r . $out
|
||||||
|
'';
|
||||||
|
}
|
|
@ -4,6 +4,6 @@
|
||||||
<title>rrv.sh</title>
|
<title>rrv.sh</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>TEST</h1>
|
<h1>TESTES</h1>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
@ -45,7 +46,7 @@
|
||||||
pages = [
|
pages = [
|
||||||
{
|
{
|
||||||
domain = "rrv.sh";
|
domain = "rrv.sh";
|
||||||
root = ./root;
|
root = pkgs.pantheon."rrv.sh";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
proxies = [
|
proxies = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue