From 95cd73423a56776415217cb6df89ba1deabdbddc Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Thu, 4 Sep 2025 20:30:18 -0400 Subject: [PATCH] refactor: simplify `shell.nix` --- shell.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index e155fa2..cc840a0 100644 --- a/shell.nix +++ b/shell.nix @@ -1,2 +1,4 @@ -{ pkgs }: -pkgs.mkShell {} +{ mkShell }: + +# GCC is provided by default +mkShell {}