Setup OwnTracks frontend and recorder

This commit is contained in:
Gene Liverman 2024-02-11 21:21:25 -05:00 committed by Gene Liverman
parent b07fc41726
commit 623dd63fec
3 changed files with 41 additions and 27 deletions

View file

@ -0,0 +1,13 @@
{ ... }: {
# Ideas from https://madison-technologies.com/take-your-nixos-container-config-and-shove-it/
virtualisation.oci-containers.containers = {
# See https://github.com/owntracks/frontend
ot-frontend = {
image = "owntracks/frontend";
};
# See https://github.com/owntracks/docker-recorder
ot-recorder = {
image = "owntracks/recorder";
};
};
}