type-theory/flake.nix
2025-01-14 06:09:50 +00:00

7 lines
185 B
Nix

{
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
devShell = pkgs.mkShell {};
});
}