nixos/systems/loki-test/default.nix

15 lines
427 B
Nix
Raw Normal View History

2022-09-16 12:23:48 +02:00
{ hostname, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/raspi4" {
ip = "10.7.89.10";
inherit hostname inputs pkgs;
})
"${inputs.self}/modules/docker"
2022-09-17 17:31:43 +02:00
"${inputs.self}/modules/pihole" # 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
];
}