infrastructure/shell.nix
2022-12-21 20:27:20 +01:00

10 lines
103 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
colmena
nixfmt
];
}