kcnhub: packages: ai/ml/llm packages

master
Antoine Fauroux 2026-08-20 16:01:18 -04:00
parent f4de1e8158
commit 1167c16c1f
3 changed files with 10 additions and 3 deletions

View File

@ -106,9 +106,6 @@
sops
# Used for Key Generation
age
# Needed to install claude code (do not touch)
unstable-unfree.claude-code
# To try to make X11 forwarding work we install xauth
xorg.xauth

View File

@ -1,5 +1,6 @@
{ ... }: {
imports = [
./packages/ai.nix
./packages/ngilab.nix
./packages/office.nix
./packages/terminal.nix

View File

@ -0,0 +1,9 @@
{ config, pkgs, lib, ... }: {
environment.systemPackages = with pkgs; [
# v-- Proprietary (hence unfree)
unstable-unfree.claude-code
unstable.pi-coding-agent
# v-- Depends on CUDA (hence unfree)
unstable-unfree.llama-cpp
];
}