1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 07:31:03 +01:00
home-manager/tests/modules/programs/amoco/settings.nix
2025-10-07 11:06:11 -05:00

14 lines
265 B
Nix

{
programs.amoco = {
enable = true;
config = ''
print("No example config found!")
'';
};
nmt.script = ''
assertFileExists home-files/.config/amoco/config
assertFileContent home-files/.config/amoco/config \
${./config}
'';
}