From 21ad4f97cd4662577f79f5786af7a09a7a0f113d Mon Sep 17 00:00:00 2001 From: Hermes-Neo Date: Sat, 18 Jul 2026 04:04:19 +0100 Subject: [PATCH] refactor: remove root-level nginx example from podman module --- modules/common/podman.nix | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/modules/common/podman.nix b/modules/common/podman.nix index 9ec00f3..26fc17c 100644 --- a/modules/common/podman.nix +++ b/modules/common/podman.nix @@ -3,17 +3,6 @@ virtualisation.podman = { enable = true; # Rootless containers by default - # .container files in /etc/containers/systemd/ are auto-detected - }; - - # Nix-declared containers - virtualisation.oci-containers = { - backend = "podman"; - containers = { - nginx-example = { - image = "nginx:latest"; - ports = [ "9999:80" ]; - }; - }; + # Quadlet files in ~/.config/containers/systemd/ are auto-detected }; }