summaryrefslogtreecommitdiff
path: root/nix/containerize.nix
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-02-04 18:23:07 -0500
committerGitHub <[email protected]>2025-02-04 18:23:07 -0500
commite769f685b3a0a530a4e0c582d021861c5d612b4f (patch)
tree739a5769adddc14c78d43dca3f300b4f3853859c /nix/containerize.nix
parent01709ce23d6e5b234dfed67bd4845251da0a4c35 (diff)
moyai (#266)
* chill -> moyai * license: update year * treewide: update deps
Diffstat (limited to 'nix/containerize.nix')
-rw-r--r--nix/containerize.nix8
1 files changed, 4 insertions, 4 deletions
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