Add module import magic
This commit is contained in:
parent
66d21a9688
commit
362b9b6bb8
@ -1,6 +1,10 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
../../modules
|
||||||
|
];
|
||||||
|
|
||||||
networking.domain = "net.clerie.de";
|
networking.domain = "net.clerie.de";
|
||||||
|
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
../../configuration/common
|
../../configuration/common
|
||||||
../../configuration/proxmox-vm
|
../../configuration/proxmox-vm
|
||||||
../../configuration/dn42
|
../../configuration/dn42
|
||||||
../../modules/policyrouting
|
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader.grub.enable = true;
|
boot.loader.grub.enable = true;
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
../../configuration/common
|
../../configuration/common
|
||||||
../../configuration/proxmox-vm
|
../../configuration/proxmox-vm
|
||||||
../../configuration/dn42
|
../../configuration/dn42
|
||||||
../../modules/policyrouting
|
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader.grub.enable = true;
|
boot.loader.grub.enable = true;
|
||||||
|
8
modules/default.nix
Normal file
8
modules/default.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./policyrouting
|
||||||
|
./anycast_healthchecker
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user