Correct the imports for pihole

This commit is contained in:
Andreas Zweili 2022-11-04 13:23:48 +01:00
parent c21f8c2a4d
commit f0cf52cee4
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
inherit hostname inputs;
})
(import "${inputs.self}/modules/docker" { inherit custom; })
"${inputs.self}/modules/pihole" # needs to be limited to lan interface
(import "${inputs.self}/modules/pihole" { inherit inputs; }) # needs to be limited to lan interface
"${inputs.self}/modules/router"
"${inputs.self}/modules/tmux"
"${inputs.self}/modules/unbound" # needs to be limited to lan interface

View File

@ -11,7 +11,7 @@
time = "05:00"; inherit custom hostname inputs;
})
(import "${inputs.self}/modules/docker" { inherit custom; })
"${inputs.self}/modules/pihole"
(import "${inputs.self}/modules/pihole" { inherit inputs; })
"${inputs.self}/modules/unbound"
];
}