From e769f685b3a0a530a4e0c582d021861c5d612b4f Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Tue, 4 Feb 2025 18:23:07 -0500 Subject: moyai (#266) * chill -> moyai * license: update year * treewide: update deps --- nix/containerize.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nix/containerize.nix') diff --git a/nix/containerize.nix b/nix/containerize.nix index b936b90..2be02ef 100644 --- a/nix/containerize.nix +++ b/nix/containerize.nix @@ -2,18 +2,18 @@ let containerize = - chill-discord-bot: + moyai-discord-bot: let - inherit (chill-discord-bot.passthru) crossPkgs; + inherit (moyai-discord-bot.passthru) crossPkgs; architecture = crossPkgs.go.GOARCH; in dockerTools.buildLayeredImage { - name = "chill-discord-bot"; + name = "moyai-discord-bot"; tag = "latest-${architecture}"; contents = [ dockerTools.caCertificates ]; - config.Cmd = [ (lib.getExe chill-discord-bot) ]; + config.Cmd = [ (lib.getExe moyai-discord-bot) ]; inherit architecture; }; in -- cgit v1.2.3