9 lines
187 B
Nix
Raw Normal View History

2024-09-23 14:30:14 +02:00
{config, ...}: {
virtualisation.oci-containers.containers."nginx" = {
image = "docker.io/nginx:alpine";
environmentFiles = [
config.age.secrets.secret1.path
];
};
}