Files
My_NixOS_Config/home-manager/homeserver/containers/site.nix
Cian Hughes f7550aa270 Removed declarative caddyfile building
Caddy doesn't seem to like symlinked config files, and home manager
doesnt like producing files (even if they're read only). So, basically,
the 2 technologies just dont play nice together.
2025-02-07 01:24:49 +00:00

21 lines
355 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
unstablePkgs,
...
}: {
services.podman.containers = {
bulbaspace-site = {
image = "docker.io/library/httpd:alpine";
autoUpdate = "registry";
network = "proxy-net";
volumes = [
"/home/cianh/caddy/placeholder_site/:/usr/local/apache2/htdocs:Z"
];
};
};
}