summaryrefslogtreecommitdiff
path: root/home/ebisu/shared
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-23 03:12:23 -0700
committerFuwn <[email protected]>2024-10-23 03:12:23 -0700
commiteda22a13f8e6b2b5afd0f6f6581b2bd4d5787737 (patch)
treedc4e57a4dae7cd355d7a1ce67a0b28f5e9505058 /home/ebisu/shared
parenthome: move utility to shared (diff)
downloadnixos-config-eda22a13f8e6b2b5afd0f6f6581b2bd4d5787737.tar.xz
nixos-config-eda22a13f8e6b2b5afd0f6f6581b2bd4d5787737.zip
home: move scripting to shared
Diffstat (limited to 'home/ebisu/shared')
-rw-r--r--home/ebisu/shared/default.nix1
-rw-r--r--home/ebisu/shared/scripting/charmbracelet.nix11
-rw-r--r--home/ebisu/shared/scripting/default.nix21
-rw-r--r--home/ebisu/shared/scripting/ripgrep.nix5
4 files changed, 38 insertions, 0 deletions
diff --git a/home/ebisu/shared/default.nix b/home/ebisu/shared/default.nix
index bb3de2c..423433c 100644
--- a/home/ebisu/shared/default.nix
+++ b/home/ebisu/shared/default.nix
@@ -1,6 +1,7 @@
{
imports = [
./browser
+ ./scripting
./utility
];
}
diff --git a/home/ebisu/shared/scripting/charmbracelet.nix b/home/ebisu/shared/scripting/charmbracelet.nix
new file mode 100644
index 0000000..367aa26
--- /dev/null
+++ b/home/ebisu/shared/scripting/charmbracelet.nix
@@ -0,0 +1,11 @@
+{ pkgs, ... }:
+{
+ home.packages = with pkgs; [
+ gum
+ mods
+ glow
+ pop
+ charm-freeze
+ wishlist
+ ];
+}
diff --git a/home/ebisu/shared/scripting/default.nix b/home/ebisu/shared/scripting/default.nix
new file mode 100644
index 0000000..3231f0c
--- /dev/null
+++ b/home/ebisu/shared/scripting/default.nix
@@ -0,0 +1,21 @@
+{ pkgs, ... }:
+{
+ imports = [
+ ./charmbracelet.nix
+ ./ripgrep.nix
+ ];
+
+ programs.fzf.enable = true;
+
+ home.packages = with pkgs; [
+ mdcat
+ moreutils
+ pup
+ inxi
+ pv
+ yad
+ jq
+ yj
+ pkgs.tsutsumi.html2md
+ ];
+}
diff --git a/home/ebisu/shared/scripting/ripgrep.nix b/home/ebisu/shared/scripting/ripgrep.nix
new file mode 100644
index 0000000..5d221e3
--- /dev/null
+++ b/home/ebisu/shared/scripting/ripgrep.nix
@@ -0,0 +1,5 @@
+{ pkgs, ... }:
+{
+ programs.ripgrep.enable = true;
+ home.packages = with pkgs; [ ripgrep-all ];
+}