summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornamilsk <namilsk@namilsk.tech>2026-01-12 21:09:34 +0300
committernamilsk <namilsk@namilsk.tech>2026-01-12 21:09:34 +0300
commitb81a55bea1525b2fcf84591eb902926fb1d0cece (patch)
tree440abf10a9e77172d1073e64b6baeccad7be0bde
parentf8d7f8f17eb8096805172777ce7aee0fde1a1581 (diff)
Added auto-installing rustup target in `shell.nix`
-rw-r--r--shell.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
index 286417e..ae3f6ff 100644
--- a/shell.nix
+++ b/shell.nix
@@ -8,4 +8,10 @@ pkgs.mkShell {
pkg-config
gcc
];
+
+ shellHook = ''
+ rustup target add x86_64-unknown-linux-musl
+ '';
}
+
+