nix/home/config/nvim/module/plugin/Gen.nix

11 lines
124 B
Nix
Raw Normal View History

2024-10-23 21:19:48 +03:00
{
2024-11-04 04:37:29 +03:00
config,
...
}: {
text = ''
require("gen").setup {
2024-11-06 01:10:30 +03:00
model = "${config.module.ollama.primaryModel or ""}"
2024-11-04 04:37:29 +03:00
}
'';
2024-10-23 21:19:48 +03:00
}