diff --git a/flake.nix b/flake.nix index 56c0a1d..854ff6d 100644 --- a/flake.nix +++ b/flake.nix @@ -4,8 +4,12 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11"; flake-parts.url = "github:hercules-ci/flake-parts"; - treefmt-nix.url = "github:numtide/treefmt-nix"; # Formatter - treefmt-nix.inputs.nixpkgs.follows = "nixpkgs"; + + # Formatter + treefmt-nix = { + url = "github:numtide/treefmt-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = inputs @ { self, nixpkgs, flake-parts, ... }: @@ -25,5 +29,4 @@ }; }; }; - }