Remove SnowLib

This commit is contained in:
jopejoe1 2023-05-16 14:55:15 +02:00
parent ff44c8a5e0
commit 7fa434b6f8
42 changed files with 363 additions and 1300 deletions

View file

@ -1,15 +0,0 @@
{ lib, fetchFromGitHub, buildNpmPackage, ... }:
buildNpmPackage {
name = "knossos";
verison = "2.2";
src = fetchFromGitHub {
owner = "modrinth";
repo = "knossos";
rev = "v2.2";
hash = "sha256-p6rHMio9oOmT2qyPq+TPzd7id+X1fck9Wa3vLHWp0Kg=";
};
npmDepsHash = "sha256-4ha6qgehExf/OoUGu622vpBTN80/83r3IWbPbBOSCMQ=";
}

View file

@ -1,15 +0,0 @@
{ stdenv, lib }:
stdenv.mkDerivation {
pname = "opennic-dns-root-data";
buildCommand = ''
mkdir $out
echo "${lib.toString "example.com" (import ./geek.nix { inherit dns; })}" > $out/geek.zone
echo "${lib.toString "example.com" (import ./geek.nix { inherit dns; })}" > $out/glue.zone
'';
meta = with lib; {
description = "DNS root data including root zone for openic";
};
}

View file

@ -1,15 +0,0 @@
{ lib }:
with lib.combinators;
{
SOA = {
nameServer = "ns2";
adminEmail = "shdwdrgn@sourpuss.net";
serial = 2019030800;
};
NS = [
"ns2.opennic.glue."
];
}

View file

@ -1,20 +0,0 @@
{ lib }:
with lib.combinators;
{
SOA = {
nameServer = "ns0";
adminEmail = "shdwdrgn@sourpuss.net";
serial = 2019030800;
};
NS = [
"ns0.opennic.glue."
];
subdomains = {
"ns0.opennic".A = [ "195.201.99.61" "168.119.153.26" ];
};
}