Initial commit

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-08-24 19:20:40 +03:00
commit c2f44d2bb7
8 changed files with 822 additions and 0 deletions

32
flake.nix Normal file
View File

@@ -0,0 +1,32 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
system = system;
};
in
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
cmake
ninja
clang-tools
lldb
pkg-config
];
};
}
);
}