mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-06 12:59:22 +02:00
Remove SnowLib
This commit is contained in:
parent
ff44c8a5e0
commit
7fa434b6f8
42 changed files with 363 additions and 1300 deletions
|
@ -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=";
|
||||
}
|
|
@ -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";
|
||||
};
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
{ lib }:
|
||||
|
||||
with lib.combinators;
|
||||
|
||||
{
|
||||
SOA = {
|
||||
nameServer = "ns2";
|
||||
adminEmail = "shdwdrgn@sourpuss.net";
|
||||
serial = 2019030800;
|
||||
};
|
||||
|
||||
NS = [
|
||||
"ns2.opennic.glue."
|
||||
];
|
||||
}
|
|
@ -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" ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue