mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
22 lines
333 B
Nix
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"
|
|
];
|
|
};
|
|
}
|