blueis/shell.nix
2025-09-24 16:16:45 +03:00

8 lines
103 B
Nix

{ pkgs ? import <nixpkgs> }:
with pkgs;
mkShell {
buildInputs = with pkgs; [
gcc
ccls
];
}