Sebastian Walz 9f7b02e1cd
Tohu vaBohu
2023-04-03 14:38:02 +02:00

37 lines
1.1 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ core, web, ... } @ libs:
let
inherit(core) path;
env
= {
head
= {
# Metadata
author = "_sivizius";
description = "Personal Homepage of sivizius";
keywords = "Organometallic Chemistry, Rust, Nix/NixOS";
title = "Sivis 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;
}