clan-core/flake-parts/formatting.nix

16 lines
323 B
Nix
Raw Normal View History

{ self
, inputs
, ...
2023-07-12 17:50:23 +00:00
}: {
imports = [
inputs.treefmt-nix.flakeModule
];
perSystem = { pkgs, ... }: {
treefmt.projectRootFile = "flake.nix";
treefmt.flakeCheck = true;
treefmt.flakeFormatter = true;
treefmt.programs.nixpkgs-fmt.enable = true;
treefmt.programs.shellcheck.enable = true;
};
}