Added nix support
This commit is contained in:
parent
d52f770cf1
commit
74a8665d4c
4 changed files with 40 additions and 1 deletions
11
flake.nix
Normal file
11
flake.nix
Normal 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];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue