shell-utils.nix (3027B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | ## Shell Utilities ## {config, ...}: let inherit (config.flake) files; in { flake.modules = { nixos.shell-utils = {pkgs, ...}: { config = { environment = { # Utilities systemPackages = with pkgs; [ btop fastfetch fd hstr lolcat tree yazi zellij ]; # Fetch etc."fastfetch/config.jsonc".text = files.fetch; # Command Aliases shellAliases = { hi = "echo 'Hi there. How are you?'"; bye = "exit"; c = "bat"; l = "eza -b -h -l -F --octal-permissions --time-style iso"; grep = "grep --color"; colors = "${files.scripts.colors}"; sike = "fastfetch"; }; }; ## Program Configuration services.lorri.enable = true; programs = { # Command Correction Helper pay-respects = { enable = true; alias = "fix"; }; # DirENV Support direnv = { enable = true; nix-direnv.enable = true; }; }; }; }; homeManager.shell-utils = _: { home.persist = { files = [".hstr_favorites"]; directories = [ ".local/share/direnv" ".local/share/zoxide" ]; }; programs = { btop.enable = true; # Resource Monitor zellij.enable = true; # Terminal Multiplexer # Text Search ripgrep = { enable = true; arguments = [ "--smart-case" "--hidden" "--heading" "--line-number" "--column" "--color=auto" "--max-columns=150" "--max-columns-preview" "--colors=line:style:bold" "--colors=path:fg:cyan" "--colors=path:style:bold" "--colors=match:fg:magenta" "--colors=match:style:bold" ]; }; # Command History Manager hstr = { enable = true; enableBashIntegration = true; enableZshIntegration = true; }; # File Manager yazi = { enable = true; enableBashIntegration = true; enableZshIntegration = true; }; # Smarter cd zoxide = { enable = true; enableBashIntegration = true; enableZshIntegration = true; }; # Pager bat = { enable = true; config = { style = "full"; italic-text = "always"; }; }; # File Lister eza = { enable = true; enableBashIntegration = true; enableZshIntegration = true; colors = "auto"; icons = "auto"; git = true; extraOptions = ["--group-directories-first"]; }; }; }; }; } |