diff --git a/.envrc b/.envrc
deleted file mode 100644
index 3550a30f..00000000
--- a/.envrc
+++ /dev/null
@@ -1 +0,0 @@
-use flake
diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml
deleted file mode 100644
index 5983eb1d..00000000
--- a/.github/workflows/nix.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-name: Nix
-
-on:
- push:
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: cachix/install-nix-action@v12
- - name: Building package
- run: nix-build . -A defaultPackage.x86_64-linux
diff --git a/README.md b/README.md
index bc75dfe6..d3dfdff8 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
[](https://github.com/txpipe/aiken/blob/main/LICENSE)
[](https://crates.io/crates/aiken)
[](https://github.com/txpipe/aiken/actions/workflows/rust.yml)
-[](https://github.com/txpipe/aiken/actions/workflows/nix.yml)
+[](https://github.com/txpipe/aiken/actions/workflows/mdBook.yml)
diff --git a/default.nix b/default.nix
deleted file mode 100644
index 39bacff6..00000000
--- a/default.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-(import (
- fetchTarball {
- url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
- sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2"; }
-) {
- src = ./.;
-}).defaultNix
diff --git a/flake.lock b/flake.lock
deleted file mode 100644
index c06f8366..00000000
--- a/flake.lock
+++ /dev/null
@@ -1,75 +0,0 @@
-{
- "nodes": {
- "naersk": {
- "inputs": {
- "nixpkgs": "nixpkgs"
- },
- "locked": {
- "lastModified": 1655042882,
- "narHash": "sha256-9BX8Fuez5YJlN7cdPO63InoyBy7dm3VlJkkmTt6fS1A=",
- "owner": "nix-community",
- "repo": "naersk",
- "rev": "cddffb5aa211f50c4b8750adbec0bbbdfb26bb9f",
- "type": "github"
- },
- "original": {
- "owner": "nix-community",
- "ref": "master",
- "repo": "naersk",
- "type": "github"
- }
- },
- "nixpkgs": {
- "locked": {
- "lastModified": 0,
- "narHash": "sha256-5Va2Qmy50AspTfyHvoWrwCpTuqArOg9LnvRPe8YW5no=",
- "path": "/nix/store/19fkp4kfy3im81s5bnc5zg25k4g5hq86-source",
- "type": "path"
- },
- "original": {
- "id": "nixpkgs",
- "type": "indirect"
- }
- },
- "nixpkgs_2": {
- "locked": {
- "lastModified": 1655211057,
- "narHash": "sha256-Zs5wm2GuW2nER9uYpgAAxuEqEK3LTo3Y+lwaWn/YYHk=",
- "owner": "NixOS",
- "repo": "nixpkgs",
- "rev": "1712ecaa5118815292f57d6669c3c81d84d842b3",
- "type": "github"
- },
- "original": {
- "owner": "NixOS",
- "ref": "nixpkgs-unstable",
- "repo": "nixpkgs",
- "type": "github"
- }
- },
- "root": {
- "inputs": {
- "naersk": "naersk",
- "nixpkgs": "nixpkgs_2",
- "utils": "utils"
- }
- },
- "utils": {
- "locked": {
- "lastModified": 1653893745,
- "narHash": "sha256-0jntwV3Z8//YwuOjzhV2sgJJPt+HY6KhU7VZUL0fKZQ=",
- "owner": "numtide",
- "repo": "flake-utils",
- "rev": "1ed9fb1935d260de5fe1c2f7ee0ebaae17ed2fa1",
- "type": "github"
- },
- "original": {
- "owner": "numtide",
- "repo": "flake-utils",
- "type": "github"
- }
- }
- },
- "root": "root",
- "version": 7
-}
diff --git a/flake.nix b/flake.nix
deleted file mode 100644
index 163fcdb2..00000000
--- a/flake.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- inputs = {
- naersk.url = "github:nix-community/naersk/master";
- nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
- utils.url = "github:numtide/flake-utils";
- };
-
- outputs = { self, nixpkgs, utils, naersk }:
- utils.lib.eachDefaultSystem (system:
- let
- pkgs = import nixpkgs { inherit system; };
- naersk-lib = pkgs.callPackage naersk { };
- in
- {
- defaultPackage = naersk-lib.buildPackage ./.;
-
- defaultApp = utils.lib.mkApp {
- drv = self.defaultPackage."${system}";
- };
-
- devShell = with pkgs; mkShell {
- buildInputs = [ cargo rustc rustfmt pre-commit rustPackages.clippy ];
- RUST_SRC_PATH = rustPlatform.rustLibSrc;
- };
- });
-}
diff --git a/shell.nix b/shell.nix
deleted file mode 100644
index 77db547f..00000000
--- a/shell.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-(import (
- fetchTarball {
- url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
- sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2"; }
-) {
- src = ./.;
-}).shellNix