Added nix support

This commit is contained in:
Jurn Wubben 2025-07-28 16:21:47 +02:00
parent d52f770cf1
commit 74a8665d4c
4 changed files with 40 additions and 1 deletions

11
flake.nix Normal file
View file

@ -0,0 +1,11 @@
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.${system}.default = pkgs.mkShell {
nativeBuildInputs = [pkgs.jetbrains.idea-community-bin pkgs.jdk8];
};
};
}