forked from Fediversity/Fediversity
Compare commits
2 commits
5390d869c5
...
2ba91fef6e
Author | SHA1 | Date | |
---|---|---|---|
Valentin Gagarin | 2ba91fef6e | ||
Valentin Gagarin | f18ae33b2a |
|
@ -2,7 +2,7 @@
|
||||||
{
|
{
|
||||||
collections.events.entry = { link, ... }: {
|
collections.events.entry = { link, ... }: {
|
||||||
title = "NixOS 24.11 ZHF hackathon";
|
title = "NixOS 24.11 ZHF hackathon";
|
||||||
name = lib.mkForce "zhf-24-11";
|
name = "zhf-24-11";
|
||||||
description = "NixOS 24.11 ZHF hackathon in Zürich";
|
description = "NixOS 24.11 ZHF hackathon in Zürich";
|
||||||
start-date = "2024-11-23";
|
start-date = "2024-11-23";
|
||||||
end-date = "2024-11-24";
|
end-date = "2024-11-24";
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
body = ''
|
body = ''
|
||||||
The biannual [Zürich NixOS ZHF hackathon](https://zurich.nix.ug/) has become somewhat of an institution for maintaining the tradition of preparing the upcoming NixOS release.
|
The biannual [Zürich NixOS ZHF hackathon](https://zurich.nix.ug/) has become somewhat of an institution for maintaining the tradition of preparing the upcoming NixOS release.
|
||||||
|
|
||||||
The main goal of the two-day gathering is to bring down the number of build failures on the [continuous integration system Hydra](https://status.nixos.org/) before the release: Zero Hydra Failures.
|
The main goal of the two-day gathering is to bring down the number of build failures on the [continuous integration system Hydra](https://status.nixos.org/) before the release: ZHF stands for *Zero Hydra Failures*.
|
||||||
It also presents a great opportunity to learn Nix, squash bugs together, get to know each other, discuss current events, and make plans for the future.
|
It also presents a great opportunity to learn Nix, squash bugs together, get to know each other, discuss current events, and make plans for the future.
|
||||||
|
|
||||||
This is the greatest event in the series so far, with more than 40 participants from all over Europe, including many high-profile contributors and maintainers in the Nix ecosystem.
|
This is the greatest event in the series so far, with more than 40 participants from all over Europe, including many high-profile contributors and maintainers in the Nix ecosystem.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
{
|
{
|
||||||
collections.news.entry = { link, ... }: rec {
|
collections.news.entry = { link, ... }: rec {
|
||||||
name = lib.mkForce "zhf-24-11";
|
name = "zhf-24-11";
|
||||||
title = "NixOS 24.11 release hackathon and workshop";
|
title = "NixOS 24.11 release hackathon and workshop";
|
||||||
description = "Fediversity engineers met in Zürich at a NixOS 24.11 ZHF hackathon";
|
description = "Fediversity engineers met in Zürich at a NixOS 24.11 ZHF hackathon";
|
||||||
date = "2024-11-28";
|
date = "2024-11-28";
|
|
@ -34,7 +34,7 @@ in
|
||||||
name = mkOption {
|
name = mkOption {
|
||||||
description = "Symbolic name, used as a human-readable identifier";
|
description = "Symbolic name, used as a human-readable identifier";
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = name;
|
default = lib.mkDefault name;
|
||||||
};
|
};
|
||||||
prefixes = mkOption {
|
prefixes = mkOption {
|
||||||
description = ''
|
description = ''
|
||||||
|
|
Loading…
Reference in a new issue