summaryrefslogtreecommitdiff
path: root/home/ebisu/shared/utility
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-23 03:11:42 -0700
committerFuwn <[email protected]>2024-10-23 03:11:42 -0700
commit84bfa92858be8978e8afff1a5f327072ef94018e (patch)
treef320b57ffc555bd578faeb1e4428b7026ce01634 /home/ebisu/shared/utility
parenthome: move browser to shared (diff)
downloadnixos-config-84bfa92858be8978e8afff1a5f327072ef94018e.tar.xz
nixos-config-84bfa92858be8978e8afff1a5f327072ef94018e.zip
home: move utility to shared
Diffstat (limited to 'home/ebisu/shared/utility')
-rw-r--r--home/ebisu/shared/utility/ai.nix7
-rw-r--r--home/ebisu/shared/utility/default.nix12
2 files changed, 19 insertions, 0 deletions
diff --git a/home/ebisu/shared/utility/ai.nix b/home/ebisu/shared/utility/ai.nix
new file mode 100644
index 0000000..37b4e4d
--- /dev/null
+++ b/home/ebisu/shared/utility/ai.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }:
+{
+ home.packages = with pkgs; [
+ ollama-cuda
+ shell-gpt
+ ];
+}
diff --git a/home/ebisu/shared/utility/default.nix b/home/ebisu/shared/utility/default.nix
new file mode 100644
index 0000000..f21b623
--- /dev/null
+++ b/home/ebisu/shared/utility/default.nix
@@ -0,0 +1,12 @@
+{ pkgs, ... }:
+{
+ imports = [ ./ai.nix ];
+
+ home.packages = with pkgs; [
+ fontpreview
+ tealdeer
+ todo
+ ripunzip
+ lemmeknow
+ ];
+}