Skip to content

Commit 626c187

Browse files
committed
vibe sandbox wip
1 parent 51be798 commit 626c187

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

nix/configuration.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ in {
10981098
#
10991099
services.llama-cpp.port = 11434;
11001100
services.llama-cpp.package = unst.llama-cpp.override {vulkanSupport = true;};
1101-
services.llama-cpp.model = ../../llms/google_gemma-3-270m-it-qat-Q5_K_M.gguf;
1101+
services.llama-cpp.model = ../../llms/microsoft_Phi-4-mini-reasoning-Q4_K_M.gguf;
11021102
services.llama-cpp.extraFlags = ["-c" "32000"];
11031103
#
11041104
# Fonts

nix/vibe.nix

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
text = "alacritty";
1010
runtimeInputs = with pkgs; [
1111
(import ./../pub/vi/nix/default.nix {})
12+
fontconfig
1213
busybox
1314
curl
1415
wget
@@ -24,6 +25,11 @@
2425
gpu.enable = true;
2526
gpu.provider = "bundle";
2627
fonts.enable = true;
28+
fonts.fonts =
29+
builtins.filter pkgs.lib.attrsets.isDerivation (
30+
builtins.attrValues pkgs.nerd-fonts
31+
)
32+
++ [pkgs.dejavu_fonts];
2733
locale.enable = true;
2834
etc.sslCertificates.enable = true;
2935
bubblewrap = {
@@ -32,6 +38,7 @@
3238
sockets.wayland = true;
3339
bind.ro = [
3440
"/bin/sh"
41+
"/usr/bin/env"
3542
"/run/current-system/sw/bin/bash"
3643
"/run/current-system/sw/bin/less"
3744
(sloth.concat' sloth.homeDir "/.config/tmux")
@@ -47,9 +54,7 @@
4754
tmpfs = [
4855
"/tmp"
4956
];
50-
env.NIX_CONFIG = ''
51-
experimental-features = nix-command flakes
52-
'';
57+
env.NIX_CONFIG = "experimental-features = nix-command flakes";
5358
};
5459
};
5560
};

pub/vi/nix/default.nix

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,9 @@ in
8585
haskell-vim
8686
hlint-refactor-vim
8787
vim-nix
88-
dhall-vim
8988
psc-ide-vim
9089
purescript-vim
91-
vim-elixir
92-
gleam-vim
9390
neoformat
94-
vim-terraform
9591
vim-commentary
9692
render-markdown-nvim
9793
#
@@ -103,6 +99,7 @@ in
10399
#
104100
# AI
105101
#
102+
avante-nvim
106103
# nvim-lspconfig
107104
# unst.vimPlugins.vim-tabby
108105
];

pub/vi/vimrc.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ require("gp").setup({
55
}
66
}
77
})
8+
9+
require("avante_lib").load()
10+
require("avante").setup({
11+
provider = "gemini"
12+
})

0 commit comments

Comments
 (0)