remove treefmt-nix
2 files changed, 1 insertion(+), 34 deletions(-)
changed files
M flake.lock → flake.lock
@@ -740,8 +740,7 @@ "nixvim": "nixvim", "nur": "nur", "pre-commit-hooks": "pre-commit-hooks", "searchix": "searchix", - "srvos": "srvos", - "treefmt-nix": "treefmt-nix_3" + "srvos": "srvos" } }, "searchix": {@@ -935,26 +934,6 @@ "narHash": "sha256-0IEdQB1nS+uViQw4k3VGUXntjkDp7aAlqcxdewb/hAc=", "owner": "numtide", "repo": "treefmt-nix", "rev": "ac8e6f32e11e9c7f153823abc3ab007f2a65d3e1", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "treefmt-nix", - "type": "github" - } - }, - "treefmt-nix_3": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1752055615, - "narHash": "sha256-19m7P4O/Aw/6+CzncWMAJu89JaKeMh3aMle1CNQSIwM=", - "owner": "numtide", - "repo": "treefmt-nix", - "rev": "c9d477b5d5bd7f26adddd3f96cfd6a904768d4f9", "type": "github" }, "original": {
M flake.nix → flake.nix
@@ -63,10 +63,6 @@ }; pre-commit-hooks = { url = "github:cachix/git-hooks.nix"; }; - treefmt-nix = { - url = "github:numtide/treefmt-nix"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; outputs =@@ -218,13 +214,6 @@ // forAllSystems ( system: let pkgs = import nixpkgs { inherit system; }; - treefmtEval = treefmt-nix.lib.evalModule pkgs { - projectRootFile = "flake.nix"; - programs.nixfmt.enable = true; - programs.taplo.enable = true; - programs.fish_indent.enable = true; - programs.mdformat.enable = true; - }; in { devShells = {@@ -241,7 +230,6 @@ agenix.packages.${system}.default ]; }; }; - formatter = treefmtEval.config.build.wrapper; checks = { pre-commit-check = pre-commit-hooks.lib.${system}.run { src = ./.;