feat: comprehensive NixOS and home-manager configuration updates
This commit includes significant updates to the Nix configuration including: - Added common NixOS module with system packages - Updated home-manager configurations for various systems - Enhanced terminal programs including Claude Code integration - Updated LLM server configurations with new models - Improved btop configuration with custom package - Added opencode support with permission settings - Updated tmux and nvim configurations The changes introduce new features, update existing configurations, and improve the overall system setup.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
{ lib
|
||||
, pkgs
|
||||
, config
|
||||
, namespace
|
||||
, ...
|
||||
@@ -18,6 +19,22 @@ in
|
||||
enableMcpIntegration = true;
|
||||
settings = {
|
||||
theme = "catppuccin";
|
||||
permission = {
|
||||
edit = "allow";
|
||||
bash = "ask";
|
||||
webfetch = "ask";
|
||||
doom_loop = "ask";
|
||||
external_directory = "ask";
|
||||
};
|
||||
lsp = {
|
||||
nil = {
|
||||
command = [
|
||||
"${pkgs.nil}/bin/nil"
|
||||
"--stdio"
|
||||
];
|
||||
extensions = [ ".nix" ];
|
||||
};
|
||||
};
|
||||
provider = {
|
||||
"llama-swap" = {
|
||||
npm = "@ai-sdk/openai-compatible";
|
||||
|
||||
Reference in New Issue
Block a user