12 lines
261 B
Nix
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}
|
|
'';
|
|
}
|