From 1a7d636a7792326ae377677623e988becbd7209d Mon Sep 17 00:00:00 2001 From: Maciej Jur Date: Wed, 19 Jul 2023 18:58:53 +0200 Subject: [PATCH] swap kotori backend --- hosts/kamoshi/profiles/kotori.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/hosts/kamoshi/profiles/kotori.nix b/hosts/kamoshi/profiles/kotori.nix index 6c4f688..27de4f3 100644 --- a/hosts/kamoshi/profiles/kotori.nix +++ b/hosts/kamoshi/profiles/kotori.nix @@ -1,12 +1,15 @@ { config, pkgs, ... }: { virtualisation = { - docker.enable = true; + podman = { + enable = true; + dockerCompat = true; + }; oci-containers = { - backend = "docker"; + backend = "podman"; containers = { kotori = { - image = "kamov/kotori"; + image = "kamov/kotori:latest"; environmentFiles = [ /root/secrets/kotori.env ]; autoStart = true; };