Advent-of-Code-Aggregator/2024/flake.nix
2024-12-03 23:46:09 +01:00

26 lines
569 B
Nix

{
description = "Zeus AoC 2024";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem(system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShell = pkgs.mkShell {
name = "Advent of Code 2024";
packages = [
pkgs.hyperfine
pkgs.postgresql_14
pkgs.ldc
pkgs.go
];
};
}
);
}