Initial commit

This commit is contained in:
Aleksandr 2025-06-22 03:12:18 +03:00
parent 20f0b7a8c1
commit 788f06cdb2
15 changed files with 319 additions and 0 deletions

26
flake.nix Normal file
View file

@ -0,0 +1,26 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } (_: {
imports = [];
systems = [ "x86_64-linux" ];
perSystem = { pkgs, ... }: {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
python313
python313Packages.mypy
python313Packages.black
python313Packages.python-lsp-server
python313Packages.pylsp-mypy
];
};
};
})
;
}