From 0df5d18fd6eb08b8398453b287b17c8bc2bae621 Mon Sep 17 00:00:00 2001
From: Charles Hall <charles@computer.surgery>
Date: Fri, 26 Jan 2024 21:38:13 -0800
Subject: [PATCH] change docker tag back to `next`

I misunderstood what the general meaning of the `latest` tag was.
---
 flake.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flake.nix b/flake.nix
index c9ef7914..a16ea58c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -166,7 +166,7 @@
       mkOciImage = pkgs: package:
         pkgs.dockerTools.buildImage {
           name = package.pname;
-          tag = "latest";
+          tag = "next";
           config = {
             # Use the `tini` init system so that signals (e.g. ctrl+c/SIGINT)
             # are handled as expected