fix(home/common): use aichat instead of aichat-full

This commit is contained in:
Giulio De Pasquale 2025-04-24 11:37:14 +01:00
parent 970b75b064
commit b2091de9c9

View File

@ -15,9 +15,7 @@ let
tree tree
] ++ lib.optional (!pkgs.stdenv.isDarwin) pastebinit; ] ++ lib.optional (!pkgs.stdenv.isDarwin) pastebinit;
unstablePkgs = with pkgs.unstablePkgs; [ unstablePkgs = with pkgs.unstablePkgs; [ aider-chat ];
aider-chat-full
];
in in
{ {
imports = [ imports = [
@ -28,7 +26,7 @@ in
home = { home = {
packages = stablePkgs ++ unstablePkgs; packages = stablePkgs ++ unstablePkgs;
stateVersion = "24.11"; stateVersion = "24.11";
}; };
} }