feat: init

This commit is contained in:
2025-12-07 16:52:13 +08:00
commit 58ac814904
6 changed files with 54 additions and 0 deletions

17
sub-shell/nix/flake.nix Normal file
View File

@@ -0,0 +1,17 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-25.11";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
];
};
}
);
}