From b2091de9c9884ba3d6e57dd7277052ff767bfdbe Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Thu, 24 Apr 2025 11:37:14 +0100 Subject: [PATCH] fix(home/common): use aichat instead of aichat-full --- roles/home/common.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/roles/home/common.nix b/roles/home/common.nix index 6f54d2d..b084bb4 100644 --- a/roles/home/common.nix +++ b/roles/home/common.nix @@ -15,9 +15,7 @@ let tree ] ++ lib.optional (!pkgs.stdenv.isDarwin) pastebinit; - unstablePkgs = with pkgs.unstablePkgs; [ - aider-chat-full - ]; + unstablePkgs = with pkgs.unstablePkgs; [ aider-chat ]; in { imports = [ @@ -28,7 +26,7 @@ in home = { packages = stablePkgs ++ unstablePkgs; - + stateVersion = "24.11"; }; }