summaryrefslogtreecommitdiff
path: root/modules/hm/terminal/utils.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-20 03:14:45 +0100
committeradikro <adikro@disroot.org>2025-12-20 03:14:45 +0100
commit791bc419b6dac7c70951981ef6b34cdf85828470 (patch)
tree56d0962fdf829ae942feb1344763e54dbc3c89a3 /modules/hm/terminal/utils.nix
parente60410393cea222b16743a1a87f29c06b9b3543b (diff)
absolutely massive rewrite, made (almost) everything modular with changes to come
Diffstat (limited to 'modules/hm/terminal/utils.nix')
-rw-r--r--modules/hm/terminal/utils.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/modules/hm/terminal/utils.nix b/modules/hm/terminal/utils.nix
deleted file mode 100644
index c408e4a..0000000
--- a/modules/hm/terminal/utils.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ pkgs, ... }:
-{
- programs.zoxide = {
- enable = true;
- options = [
- "--cmd cd"
- ];
- };
- programs.bat = {
- enable = true;
- config = {
- theme = "gruvbox-dark";
- tabs = "2";
- };
- };
- home.packages = with pkgs; [
- fzf
- fd
- chafa
- hexyl
- eza
- ripgrep
- procs
- fastfetch
- ];
-}