added nix flake file

This commit is contained in:
Lorenz Hohermuth 2025-10-15 13:38:15 +02:00
parent 172ac7bbb9
commit 8b9ba20748
1 changed files with 18 additions and 0 deletions

18
flake.nix Normal file
View File

@ -0,0 +1,18 @@
{
description = "description";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
pkgs.git
];
};
};
}