Skip to content

Instantly share code, notes, and snippets.

View DavidRConnell's full-sized avatar

David R. Connell DavidRConnell

View GitHub Profile
@DavidRConnell
DavidRConnell / flake.nix
Created August 5, 2021 00:29
Neo4j flake
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};