flake.nix: don't include C toolchain in devshell

This commit is contained in:
2025-04-25 16:38:16 +02:00
parent 7e3c6e4d45
commit 959e0a5a22

View File

@@ -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 ];
};