From 7369e70d447d2d8332f5c5329775bbae212352dd Mon Sep 17 00:00:00 2001 From: Origami404 Date: Sun, 18 Jan 2026 19:59:45 +0800 Subject: [PATCH] [modules] add llm.nix --- home/hosts/hypnos.nix | 1 + home/modules/llm.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 home/modules/llm.nix diff --git a/home/hosts/hypnos.nix b/home/hosts/hypnos.nix index 9557299..92d5283 100644 --- a/home/hosts/hypnos.nix +++ b/home/hosts/hypnos.nix @@ -9,6 +9,7 @@ ../modules/shell-develop.nix ../modules/zsh.nix ../modules/darwin-packages.nix + ../modules/llm.nix ]; programs.fish.shellAliases = { diff --git a/home/modules/llm.nix b/home/modules/llm.nix new file mode 100644 index 0000000..70bd339 --- /dev/null +++ b/home/modules/llm.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + codex + ]; +}