mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
11 lines
231 B
Nix
11 lines
231 B
Nix
{
|
|
programs.gemini-cli = {
|
|
enable = true;
|
|
context = ./context.md;
|
|
};
|
|
nmt.script = ''
|
|
assertFileExists home-files/.gemini/GEMINI.md
|
|
assertFileContent home-files/.gemini/GEMINI.md \
|
|
${./context.md}
|
|
'';
|
|
}
|