2.home-manager/tests/modules/programs/am2rlauncher/settings.nix
2025-10-05 14:01:08 -05:00

12 lines
261 B
Nix

{
programs.am2rlauncher = {
enable = true;
config = ./config.xml;
};
nmt.script = ''
assertFileExists home-files/.config/AM2RLauncher/config.xml
assertFileContent home-files/.config/AM2RLauncher/config.xml \
${./config.xml}
'';
}