Init
This commit is contained in:
commit
2209bda83f
7 changed files with 60 additions and 0 deletions
16
flake.nix
Normal file
16
flake.nix
Normal 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
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue