summaryrefslogtreecommitdiff
path: root/home/ebisu/kansai/fortune/system/shell/scripting
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-04 10:23:53 -0700
committerFuwn <[email protected]>2024-10-04 10:23:53 -0700
commit33cb02e80c2250f12dc5f2ac99a9f63695b66521 (patch)
tree90e2585173261dde1d8f73c89433de26a2636baf /home/ebisu/kansai/fortune/system/shell/scripting
parenthome: add html2md (diff)
downloadnixos-config-33cb02e80c2250f12dc5f2ac99a9f63695b66521.tar.xz
nixos-config-33cb02e80c2250f12dc5f2ac99a9f63695b66521.zip
home: move some modules to core
Diffstat (limited to 'home/ebisu/kansai/fortune/system/shell/scripting')
-rw-r--r--home/ebisu/kansai/fortune/system/shell/scripting/charmbracelet.nix11
-rw-r--r--home/ebisu/kansai/fortune/system/shell/scripting/default.nix21
-rw-r--r--home/ebisu/kansai/fortune/system/shell/scripting/ripgrep.nix5
3 files changed, 0 insertions, 37 deletions
diff --git a/home/ebisu/kansai/fortune/system/shell/scripting/charmbracelet.nix b/home/ebisu/kansai/fortune/system/shell/scripting/charmbracelet.nix
deleted file mode 100644
index 367aa26..0000000
--- a/home/ebisu/kansai/fortune/system/shell/scripting/charmbracelet.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ pkgs, ... }:
-{
- home.packages = with pkgs; [
- gum
- mods
- glow
- pop
- charm-freeze
- wishlist
- ];
-}
diff --git a/home/ebisu/kansai/fortune/system/shell/scripting/default.nix b/home/ebisu/kansai/fortune/system/shell/scripting/default.nix
deleted file mode 100644
index 3231f0c..0000000
--- a/home/ebisu/kansai/fortune/system/shell/scripting/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ 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/kansai/fortune/system/shell/scripting/ripgrep.nix b/home/ebisu/kansai/fortune/system/shell/scripting/ripgrep.nix
deleted file mode 100644
index 5d221e3..0000000
--- a/home/ebisu/kansai/fortune/system/shell/scripting/ripgrep.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{ pkgs, ... }:
-{
- programs.ripgrep.enable = true;
- home.packages = with pkgs; [ ripgrep-all ];
-}