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 + ]; +}