summaryrefslogtreecommitdiff
path: root/home/ebisu/shared
diff options
context:
space:
mode:
Diffstat (limited to 'home/ebisu/shared')
-rw-r--r--home/ebisu/shared/default.nix5
-rw-r--r--home/ebisu/shared/utility/ai.nix7
-rw-r--r--home/ebisu/shared/utility/default.nix12
3 files changed, 23 insertions, 1 deletions
diff --git a/home/ebisu/shared/default.nix b/home/ebisu/shared/default.nix
index d604462..bb3de2c 100644
--- a/home/ebisu/shared/default.nix
+++ b/home/ebisu/shared/default.nix
@@ -1,3 +1,6 @@
{
- imports = [ ./browser ];
+ imports = [
+ ./browser
+ ./utility
+ ];
}
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
+ ];
+}