Compare commits
3 commits
5748b1d3d9
...
43586edf29
Author | SHA1 | Date | |
---|---|---|---|
43586edf29 | |||
cc8e92ade6 | |||
1cbcc1c569 |
2 changed files with 17 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ globalData, ... }:
|
{ globalData, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -31,4 +31,13 @@
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
# Torrent client
|
# Torrent client
|
||||||
services.transmission.enable = true;
|
services.transmission.enable = true;
|
||||||
|
|
||||||
|
services.ollama = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.unstable.ollama;
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs.unstable; [
|
||||||
|
oterm
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@ in
|
||||||
|
|
||||||
vim.opt = {
|
vim.opt = {
|
||||||
list = true;
|
list = true;
|
||||||
formatoptions = "croqanlj";
|
formatoptions = "croqnlj";
|
||||||
};
|
};
|
||||||
|
|
||||||
buffer.filetype = {
|
buffer.filetype = {
|
||||||
|
@ -73,6 +73,12 @@ in
|
||||||
# Enable fast navigation between windows
|
# Enable fast navigation between windows
|
||||||
vim.keymap.set = map (k: { mode = "n"; lhs = ctrl k; rhs = "${ctrl "w"}${k}"; }) [ "h" "l" "j" "k" ];
|
vim.keymap.set = map (k: { mode = "n"; lhs = ctrl k; rhs = "${ctrl "w"}${k}"; }) [ "h" "l" "j" "k" ];
|
||||||
|
|
||||||
|
plugin.ollama-nvim = {
|
||||||
|
enable = true;
|
||||||
|
name = "ollama";
|
||||||
|
setupSettings = { };
|
||||||
|
};
|
||||||
|
|
||||||
plugin.nlsp-settings-nvim = {
|
plugin.nlsp-settings-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
name = "nlspsettings";
|
name = "nlspsettings";
|
||||||
|
|
Loading…
Reference in a new issue