all repos — nixfiles @ 4a6843252af16bad9152ff7c9736b51a3be33ccf

System and user configuration, managed by nix and home-manager

remove treefmt-nix

Alan Pearce
commit

4a6843252af16bad9152ff7c9736b51a3be33ccf

parent

3c6b6b08e8bae2ecfc67c99e03c0a53956af0c7a

2 files changed, 1 insertion(+), 34 deletions(-)

changed files
M flake.lockflake.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.nixflake.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 = ./.;