11 lines
210 B
Nix
11 lines
210 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages =
|
|
(with pkgs; [claude-desktop]) ++
|
|
(with inputs.nix-ai-tools.packages.${pkgs.system}; [
|
|
claude-code
|
|
claudebox
|
|
opencode
|
|
]);
|
|
}
|