This repository has been archived on 2025-11-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
corebank-zoo/flake.nix
2025-07-28 16:21:47 +02:00

11 lines
310 B
Nix

{
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];
};
};
}