fix(agents): correct shared-options.nix import paths from ../ to ./
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
];
|
||||
|
||||
options.coding.agents.pi = 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; {
|
||||
@@ -205,7 +205,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.pi;
|
||||
in
|
||||
mkIf cfg.enable (let
|
||||
|
||||
Reference in New Issue
Block a user