mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-22 23:11:57 +00:00
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.
21 lines
355 B
Nix
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"
|
|
];
|
|
};
|
|
};
|
|
}
|