diff options
Diffstat (limited to 'home/ebisu/core/scripting')
| -rw-r--r-- | home/ebisu/core/scripting/charmbracelet.nix | 11 | ||||
| -rw-r--r-- | home/ebisu/core/scripting/default.nix | 21 | ||||
| -rw-r--r-- | home/ebisu/core/scripting/ripgrep.nix | 5 |
3 files changed, 37 insertions, 0 deletions
diff --git a/home/ebisu/core/scripting/charmbracelet.nix b/home/ebisu/core/scripting/charmbracelet.nix new file mode 100644 index 0000000..367aa26 --- /dev/null +++ b/home/ebisu/core/scripting/charmbracelet.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + gum + mods + glow + pop + charm-freeze + wishlist + ]; +} diff --git a/home/ebisu/core/scripting/default.nix b/home/ebisu/core/scripting/default.nix new file mode 100644 index 0000000..3231f0c --- /dev/null +++ b/home/ebisu/core/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/core/scripting/ripgrep.nix b/home/ebisu/core/scripting/ripgrep.nix new file mode 100644 index 0000000..5d221e3 --- /dev/null +++ b/home/ebisu/core/scripting/ripgrep.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: +{ + programs.ripgrep.enable = true; + home.packages = with pkgs; [ ripgrep-all ]; +} |