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