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; };