2.home-manager/tests/modules/programs/atool/config-correct.nix
Austin Horstman 74b0e97937 statix: enable empty_pattern
Enable statix's empty_pattern rule and apply its auto-fixes across the affected modules and tests.
2026-04-08 16:00:28 -05:00

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"
'';
}