publish status update

This commit is contained in:
Jörg Thalheim 2024-04-16 15:05:35 +02:00
parent 2d41407a69
commit da723063b3
3 changed files with 69 additions and 45 deletions

View File

@ -0,0 +1,11 @@
+++
title = "Lassulus"
description = "Contributor to cLAN."
date = 2021-04-01T08:50:45+00:00
updated = 2021-04-01T08:50:45+00:00
draft = false
+++
Contributor to **clan**.
[@lassulus](https://http://lassul.us/)

View File

@ -0,0 +1,13 @@
+++
title = "Weekly clan status update"
date = 2024-04-16T14:36:16+02:00
draft = false
template = "blog/page.html"
[taxonomies]
authors = ["Lassulus", "Mic92"]
+++
We added a new documentation hub for clan at [docs.clan.lol](https://docs.clan.lol)
We now have weekly office hours where people are invited to hangout and ask questions.
They are every Wednesday 15:30 UTC (17:30 CEST) at https://jitsi.lassul.us/clan.lol

View File

@ -1,18 +1,17 @@
{ self, ... }:
{
self,
inputs,
...
}: {
perSystem = {
perSystem =
{
lib,
pkgs,
self',
inputs',
...
}: let
build = baseUrl: pkgs.runCommand "website" {
buildInputs = [ pkgs.zola ];
} ''
}:
let
build =
baseUrl:
pkgs.runCommand "website" { buildInputs = [ pkgs.zola ]; } ''
mkdir -p $out
cp -r ${self}/* .
chmod -R u+w .
@ -40,7 +39,8 @@
zola build
cp -r public/* public/.* $out
'';
in {
in
{
packages.default = self'.packages.website;
packages.website = build "https://clan.lol";
packages.website-localhost = build "http://localhost:1111";