mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 07:31:03 +01:00
14 lines
265 B
Nix
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}
|
|
'';
|
|
}
|