amoco: add module

This commit is contained in:
Aguirre Matteo 2025-10-07 09:39:21 -03:00 committed by Austin Horstman
parent 6c5025e2bb
commit c6f8669f09
4 changed files with 54 additions and 0 deletions

View file

@ -0,0 +1 @@
print("No example config found!")

View file

@ -0,0 +1 @@
{ amoco-settings = ./settings.nix; }

View file

@ -0,0 +1,14 @@
{
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}
'';
}