1
0

Add module import magic

This commit is contained in:
clerie 2020-12-09 22:49:42 +01:00
parent 66d21a9688
commit 362b9b6bb8
4 changed files with 12 additions and 2 deletions

View File

@ -1,6 +1,10 @@
{ config, pkgs, lib, ... }:
{
imports = [
../../modules
];
networking.domain = "net.clerie.de";
time.timeZone = "Europe/Berlin";

View File

@ -7,7 +7,6 @@
../../configuration/common
../../configuration/proxmox-vm
../../configuration/dn42
../../modules/policyrouting
];
boot.loader.grub.enable = true;

View File

@ -7,7 +7,6 @@
../../configuration/common
../../configuration/proxmox-vm
../../configuration/dn42
../../modules/policyrouting
];
boot.loader.grub.enable = true;

8
modules/default.nix Normal file
View File

@ -0,0 +1,8 @@
{ ... }:
{
imports = [
./policyrouting
./anycast_healthchecker
];
}