mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
13 lines
389 B
Nix
13 lines
389 B
Nix
{ ... }: {
|
|
# 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";
|
|
};
|
|
};
|
|
}
|