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

9 lines
125 B
Nix
Raw Normal View History

{ config, ... }:
2024-10-23 21:19:48 +03:00
{
text = ''
require("gen").setup {
model = "${config.module.ollama.primaryModel}"
}
'';
2024-10-23 21:19:48 +03:00
}