nixfleet/formatting/default.nix
Andrea Ciceri f05ee0a658
Started migration towards flake-parts
Plus shit ton many changes I still had to commit
2023-03-12 17:05:03 +01:00

11 lines
216 B
Nix

{inputs, ...}: {
imports = [
inputs.treefmt-nix.flakeModule
];
perSystem = {pkgs, ...}: {
treefmt.config = {
projectRootFile = ".git/config";
programs.alejandra.enable = true;
};
};
}