51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
# Auto-generated using compose2nix v0.2.3-pre.
|
|
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
# Runtime
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
dockerCompat = true;
|
|
defaultNetwork.settings = {
|
|
# Required for container networking to be able to use names.
|
|
dns_enabled = true;
|
|
};
|
|
};
|
|
virtualisation.oci-containers.backend = "podman";
|
|
|
|
# Containers
|
|
virtualisation.oci-containers.containers."homeassistant" = {
|
|
environment.TZ = "Europe/Berlin";
|
|
image = "ghcr.io/home-assistant/home-assistant:stable";
|
|
volumes = [
|
|
"/mnt/data/services/homeassistant/config:/config"
|
|
];
|
|
log-driver = "journald";
|
|
extraOptions = [
|
|
"--network=host"
|
|
"--privileged"
|
|
];
|
|
};
|
|
systemd.services."podman-homeassistant" = {
|
|
serviceConfig = {
|
|
Restart = lib.mkOverride 500 "always";
|
|
};
|
|
partOf = [
|
|
"podman-compose-homeassistant-root.target"
|
|
];
|
|
wantedBy = [
|
|
"podman-compose-homeassistant-root.target"
|
|
];
|
|
};
|
|
|
|
# Root service
|
|
# When started, this will automatically create all resources and start
|
|
# the containers. When stopped, this will teardown all resources.
|
|
systemd.targets."podman-compose-homeassistant-root" = {
|
|
unitConfig = {
|
|
Description = "Root target generated by compose2nix.";
|
|
};
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
}
|