fix(agents): correct shared-options.nix import paths from ../ to ./
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
];
|
||||
|
||||
options.coding.agents.claude-code = let
|
||||
shared = import ../shared/shared-options.nix {inherit lib;};
|
||||
shared = import ./shared/shared-options.nix {inherit lib;};
|
||||
mcpCfg = config.programs.mcp or null;
|
||||
in
|
||||
with lib; {
|
||||
@@ -41,7 +41,7 @@
|
||||
};
|
||||
|
||||
config = with lib; let
|
||||
shared = import ../shared/shared-options.nix {inherit lib;};
|
||||
shared = import ./shared/shared-options.nix {inherit lib;};
|
||||
cfg = config.coding.agents.claude-code;
|
||||
agentsLib = (import ../../../../lib {inherit lib;}).agents;
|
||||
in
|
||||
|
||||
Reference in New Issue
Block a user