summaryrefslogtreecommitdiff
path: root/home/ebisu/shared/scripting/default.nix
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/scripting/default.nix
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/scripting/default.nix')
-rw-r--r--home/ebisu/shared/scripting/default.nix21
1 files changed, 21 insertions, 0 deletions
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
+ ];
+}