16 lines
207 B
Nix
16 lines
207 B
Nix
_: {
|
|
projectRootFile = "flake.nix";
|
|
|
|
programs = {
|
|
nixfmt.enable = true;
|
|
|
|
black.enable = true;
|
|
|
|
isort = {
|
|
enable = true;
|
|
profile = "black";
|
|
};
|
|
|
|
shfmt.enable = true;
|
|
};
|
|
}
|