Enable statix's empty_pattern rule and apply its auto-fixes across the affected modules and tests.
13 lines
243 B
Nix
13 lines
243 B
Nix
{
|
|
programs.atool = {
|
|
enable = true;
|
|
settings = {
|
|
path_unrar = "unrar-free";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists "home-files/.atoolrc"
|
|
assertFileContains "home-files/.atoolrc" "path_unrar unrar-free"
|
|
'';
|
|
}
|