infrastructure/ci/fmt.nix
2024-03-25 19:43:01 -07:00

22 lines
333 B
Nix

{
nix = {
whitelist = [
"overlays/default.nix"
"ci/fmt.nix"
"devShells.nix"
"shell.nix"
"lib.nix"
"outputs.nix"
"tree.nix"
];
whitelistDirs = [
"modules/extern"
"modules/system"
"systems"
];
blacklistDirs = [
"overlays"
"ci"
];
};
}