diff options
Diffstat (limited to 'home/ebisu/core/utility')
| -rw-r--r-- | home/ebisu/core/utility/ai.nix | 7 | ||||
| -rw-r--r-- | home/ebisu/core/utility/default.nix | 12 |
2 files changed, 19 insertions, 0 deletions
diff --git a/home/ebisu/core/utility/ai.nix b/home/ebisu/core/utility/ai.nix new file mode 100644 index 0000000..37b4e4d --- /dev/null +++ b/home/ebisu/core/utility/ai.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + ollama-cuda + shell-gpt + ]; +} diff --git a/home/ebisu/core/utility/default.nix b/home/ebisu/core/utility/default.nix new file mode 100644 index 0000000..f21b623 --- /dev/null +++ b/home/ebisu/core/utility/default.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: +{ + imports = [ ./ai.nix ]; + + home.packages = with pkgs; [ + fontpreview + tealdeer + todo + ripunzip + lemmeknow + ]; +} |