From 2d28fe7caf8b302c0628e827d0ba07db0638ce1b Mon Sep 17 00:00:00 2001 From: Bo Jeanes Date: Wed, 17 Jul 2024 14:24:09 +1000 Subject: [PATCH] Fix asdf installation Package name was wrong; I'm surprised that this didn't error when running `nix run` in the flake... --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 0dc9db5..0548fbf 100644 --- a/flake.nix +++ b/flake.nix @@ -306,7 +306,8 @@ }; home.packages = with pkgs; [ - asdf + # TODO: https://gist.github.com/axelbdt/0de9f5f9ba8a2100326b793f7bfb8658?permalink_comment_id=4977667#gistcomment-4977667 + asdf-vm ]; };