mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
a88df2fb10
Bacon is a background rust code checker. See <https://dystroy.org/bacon/>.
23 lines
572 B
Nix
23 lines
572 B
Nix
{ ... }: {
|
|
programs.bacon = {
|
|
enable = true;
|
|
settings = {
|
|
jobs = {
|
|
ta = {
|
|
command = [ "cargo" "test" "--all-features" "--color" "always" ];
|
|
need_stdout = true;
|
|
};
|
|
};
|
|
export = {
|
|
enabled = true;
|
|
path = ".bacon-locations";
|
|
line_format = "{kind} {path}:{line}:{column} {message}";
|
|
};
|
|
};
|
|
};
|
|
test.stubs.bacon = { };
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/bacon/prefs.toml
|
|
assertFileContent home-files/.config/bacon/prefs.toml ${./expected.toml}
|
|
'';
|
|
}
|