project-launcher changes

This commit is contained in:
m3tm3re
2026-01-06 05:54:19 +01:00
parent bb85c4b40d
commit 175f971809
8 changed files with 35 additions and 8 deletions

View File

@@ -16,6 +16,7 @@
(python3.withPackages (ps:
with ps; [
pip
uv
# Scientific packages
numba
numpy

View File

@@ -4,6 +4,12 @@
settings = {
theme = "opencode";
plugin = ["oh-my-opencode"];
formatter = {
alejandra = {
command = ["alejandra" "-q" "-"];
extensions = [".nix"];
};
};
mcp = {
Ref = {
type = "local";
@@ -14,6 +20,14 @@
];
enabled = true;
};
Anytype = {
type = "local";
command = [
"sh"
"-c"
"OPENAPI_MCP_HEADERS=$(cat /run/agenix/anytype-key) exec bunx @anyproto/anytype-mcp"
];
};
};
};
};

View File

@@ -181,11 +181,18 @@ in {
};
cli.rofi-project-opener = {
enable = true;
projectDirs = [
"$HOME/p/NIX"
];
projectDirs = {
NIX = {
path = "~/p/NIX";
args = "";
};
CHAT = {
path = "~/p/CHAT";
args = "--agent chiron";
};
};
terminal = pkgs.kitty;
terminalCommand = "opencode";
terminalCommand = "opencode %a";
};
};
}