type-theory/flake.nix

8 lines
185 B
Nix
Raw Normal View History

2025-01-14 06:09:50 +00:00
{
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
devShell = pkgs.mkShell {};
});
}