Initial commit

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-07-24 21:25:16 +03:00
commit 123763f48c
11 changed files with 20194 additions and 0 deletions

34
flake.nix Normal file
View File

@@ -0,0 +1,34 @@
{
description = "Alice";
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.override { stdenv = pkgs.llvmPackages_20.libcxxStdenv; } {
packages = with pkgs; [
cmake
ninja
clang-tools
lldb
pkg-config
];
};
}
);
}