nixos/systems/loki-test/default.nix

15 lines
526 B
Nix
Raw Normal View History

2022-11-04 19:35:57 +01:00
{ custom, hostname }: { pkgs, ... }:
2022-09-16 12:23:48 +02:00
{
imports = [
2022-11-04 19:35:57 +01:00
(import "${custom.inputs.self}/systems/raspi4" {
2022-09-16 12:23:48 +02:00
ip = "10.7.89.10";
2022-11-04 19:35:57 +01:00
inherit hostname custom;
2022-09-16 12:23:48 +02:00
})
2022-11-04 19:35:57 +01:00
(import "${custom.inputs.self}/modules/docker" { inherit custom; })
(import "${custom.inputs.self}/modules/pihole" { inherit custom; }) # needs to be limited to lan interface
"${custom.inputs.self}/modules/router"
"${custom.inputs.self}/modules/tmux"
"${custom.inputs.self}/modules/unbound" # needs to be limited to lan interface
2022-09-16 12:23:48 +02:00
];
}