1
0
Fork 0

Compare commits

..

No commits in common. "ff3ef64898361148bec3df9250f7f83cfdf87403" and "7d6a70ed2ff65b838a424d81c313c88cc87f276b" have entirely different histories.

3 changed files with 10 additions and 12 deletions

View file

@ -61,6 +61,10 @@
perSystem =
{ system, config, ... }:
let
excludes = [
".vale/*"
"home/vencord.nix"
];
deepMerge =
lhs: rhs:
lhs
@ -188,9 +192,6 @@
${pkgs.uutils-coreutils-noprefix}/bin/ln -fs ${helixLanguagesFile} ./.helix/languages.toml
'';
};
pre-commit.text = ''
${config.pre-commit.installationScript}
'';
};
};
};
@ -205,19 +206,13 @@
check-symlinks.enable = true;
flake-checker.enable = true;
};
excludes = [
".vale"
"home/vencord.nix"
];
excludes = excludes;
};
# https://flake.parts/options/treefmt-nix.html
treefmt = {
projectRootFile = "flake.nix";
programs = treefmtPrograms;
settings.global.excludes = [
".vale/*"
"home/vencord.nix"
];
settings.global.excludes = excludes;
};
};
}

View file

@ -46,6 +46,10 @@ in
configPath = typosConfigFile.outPath;
locale = "en-us";
};
excludes = [
".vale/*"
"home/vencord.nix"
];
};
vale.enable = true;
};

View file

@ -32,6 +32,5 @@
};
pre-commit = {
check-yaml.enable = true;
sort-simple-yaml.enable = true;
};
}