nixos/systems/pihole/default.nix

16 lines
411 B
Nix
Raw Normal View History

2022-09-06 23:03:29 +02:00
{ custom, hostname, inputs, pkgs, ... }:
2022-02-28 22:15:14 +01:00
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
ip = "10.7.89.2";
2022-09-06 23:03:29 +02:00
inherit hostname inputs;
2022-02-28 22:15:14 +01:00
})
(import "${inputs.self}/modules/restic-server-client" {
2022-09-06 23:03:29 +02:00
time = "05:00"; inherit custom hostname inputs pkgs;
2022-02-28 22:15:14 +01:00
})
"${inputs.self}/modules/docker"
"${inputs.self}/modules/pihole"
"${inputs.self}/modules/unbound"
];
}