This commit is contained in:
Toast 2025-04-17 13:02:17 +02:00
commit 2209bda83f
7 changed files with 60 additions and 0 deletions

16
flake.nix Normal file
View file

@ -0,0 +1,16 @@
{
description = "C/C++ environment";
# inputs.nixpkgs.url = "nixpkgs";
outputs = { nixpkgs, ... }: {
devShells.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.mkShell {
name = "C_CPP-devshell";
packages = with nixpkgs.legacyPackages.x86_64-linux; [
clang-tools
cmake
cmake-language-server
];
};
};
}