nixos/systems/loki-test/default.nix

15 lines
492 B
Nix
Raw Normal View History

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