Added fudo.org DNS config (unused) and better lib imports

This commit is contained in:
root
2020-11-23 16:22:28 -06:00
parent 4164a3b156
commit 9f52086eb7
10 changed files with 629 additions and 58 deletions
+7 -1
View File
@@ -1,6 +1,6 @@
# Ref: https://learnxinyminutes.com/docs/nix/
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
imports = [
@@ -9,6 +9,12 @@
./config/local.nix
];
lib = {
buildLisp = import ./lib/buildLisp.nix;
ip = import ./lib/ip.nix;
dns = import ./lib/dns.nix;
};
nixpkgs.config.allowUnfree = true;
security.acme.acceptTerms = true;