first commit

This commit is contained in:
2025-08-14 01:28:23 +00:00
commit b9826a33d8
4 changed files with 89 additions and 0 deletions

14
flake.nix Normal file
View File

@ -0,0 +1,14 @@
{
description = "my project description";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}