summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominique Martinet @ odin <asmadeus@codewreck.org>2022-10-29 15:50:05 +0900
committerDominique Martinet @ odin <asmadeus@codewreck.org>2022-10-29 15:50:05 +0900
commit8e1fcb5bc5e4d4c835fec0bf7aa241fb88b4e0a8 (patch)
tree13cf0de67493569bb1a990311668e71c0fda812a
parent68f94cffdc259da1acae1aeb4241adcb28999aeb (diff)
pihole: give up
-rw-r--r--profiles/pihole.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/profiles/pihole.nix b/profiles/pihole.nix
deleted file mode 100644
index a3dd2c2..0000000
--- a/profiles/pihole.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ config, pkgs, ... }:
-{
- networking.nameservers = [ "127.0.0.1" ];
- networking.search = [ "codewreck.org" ];
-
- virtualisation.oci-containers.containers.pihole = {
- image = "docker.io/pihole/pihole:latest";
- volumes = [
- "pihole-pihole:/etc/pihole"
- "pihole-dnsmasq:/etc/dnsmasq.d"
- ];
- ports = [ "53:53" "53:53/udp" "8053:80" ];
- environment = {
- TZ = "Asia/Tokyo";
- };
- };
-}