This commit is contained in:
2026-06-14 13:05:57 +01:00
parent 8ec7b3429f
commit 0fb5245525
7 changed files with 651 additions and 562 deletions
+17 -1
View File
@@ -14,9 +14,25 @@
{ pkgs, ... }:
{
home.packages = [
pkgs.opencode
pkgs.claude-code
];
programs.opencode = {
enable = true;
extraPackages = with pkgs; [
rust-analyzer
typescript-language-server
];
context = ''
Instructions:
- Do NOT preemptively load all references - use lazy loading based on actual need
- When loaded, treat content as mandatory instructions that override defaults
- Follow references recursively when needed
'';
settings = {
"lsp" = true;
};
};
};
};
}
+4 -1
View File
@@ -3,12 +3,15 @@
den,
inputs,
...
}: {
}:
{
flake-file.inputs = {
omp-nix.url = "git+https://git.molez.org/mandlm/omp-nix?ref=main";
};
modules.omp = {
homeManager = {
imports = [ inputs.omp-nix.homeManagerModules.omp ];
oh-my-pi.enable = true;
};
};
}