mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:50:44 +08:00
13 lines
261 B
Nix
13 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}
|
|
'';
|
|
}
|