Compare commits
No commits in common. "43586edf29d2f682c689f587180288968d873758" and "5748b1d3d9cf502057efa9054834f4f6f80e1b60" have entirely different histories.
43586edf29
...
5748b1d3d9
2 changed files with 2 additions and 17 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ globalData, pkgs, ... }:
|
{ globalData, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -31,13 +31,4 @@
|
||||||
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 = "croqnlj";
|
formatoptions = "croqanlj";
|
||||||
};
|
};
|
||||||
|
|
||||||
buffer.filetype = {
|
buffer.filetype = {
|
||||||
|
@ -73,12 +73,6 @@ 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