summaryrefslogtreecommitdiff
path: root/modules/hm/terminal/utils.nix
diff options
context:
space:
mode:
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
- ];
-}