Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

46 lines
1.5 KiB
Nix
Raw Permalink 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.

{ web, ... }:
{ head, ... }:
let
inherit(web.html) HTML;
in
HTML { language = "eng"; }
{
inherit head;
body
= with web.html;
[
(
main
[
(h1 "sivizius website")
(h2 "Who am I?")
(
p
''
I am sivizius, a chemist (M.Sc.) with a focus on synthetic organometallic chemistry,
in particularly ferrocene chemistry as well as an
software developer and linux system engineer.
''
)
(h2 "My skills")
(
p
''
I have practical experience with
the usual development tools like git,
(flat)assembler,
reverse engineering of software and
I am familiar with
theoretical computer science,
cryptography,
Linux and
especially the Nix/NixOS ecosystem.
By operating my own server infrastructure with e-mail, monitoring, DNS, etc.
I was able to gain valuable experience in network and system administration.
''
)
]
)
];
}