From 959e0a5a22f7faff88c55885572b3bdb91fd1a7d Mon Sep 17 00:00:00 2001 From: h7x4 Date: Fri, 25 Apr 2025 16:38:16 +0200 Subject: [PATCH] flake.nix: don't include C toolchain in devshell --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 326c483..4938633 100644 --- a/flake.nix +++ b/flake.nix @@ -96,7 +96,7 @@ inputs = pkgs.lib.mapAttrs (_: src: src.outPath) inputs; - devShells.${system}.default = pkgs.mkShell { + devShells.${system}.default = pkgs.mkShellNoCC { packages = with pkgs; [ sops ]; };