37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ core, web, ... } @ libs:
|
||
let
|
||
inherit(core) path;
|
||
|
||
env
|
||
= {
|
||
head
|
||
= {
|
||
# Metadata
|
||
author = "_sivizius";
|
||
description = "Personal Homepage of sivizius";
|
||
keywords = "Organometallic Chemistry, Rust, Nix/NixOS";
|
||
title = "Sivi’s Homepage";
|
||
|
||
_blank = "https://sivizius.eu/";
|
||
stylesheets
|
||
= {
|
||
"common.css" = { crossorigin = "anonymous"; referrerpolicy = "no-referrer"; };
|
||
};
|
||
viewport = "width=device-width, initial-scale=1.0";
|
||
};
|
||
};
|
||
|
||
www."/"
|
||
= {
|
||
root
|
||
= {
|
||
"common.css" = path.import ./common.css.nix libs env;
|
||
"index.html" = path.import ./index.html.nix libs env;
|
||
};
|
||
};
|
||
in
|
||
{
|
||
inherit www;
|
||
"" = www;
|
||
}
|