18 lines
618 B
Nix
18 lines
618 B
Nix
{ config, lib, pkgs, ... }: {
|
|
options.my.shell.tools.enable = lib.mkEnableOption "enable";
|
|
config = lib.mkIf config.my.shell.tools.enable {
|
|
users.users.jawz.packages = with pkgs; [
|
|
ripgrep # modern grep
|
|
du-dust # rusty du similar to gdu
|
|
eza # like ls but with colors
|
|
fd # modern find, faster searches
|
|
fzf # fuzzy finder! super cool and useful
|
|
gdu # disk-space utility checker, somewhat useful
|
|
rmlint # amazing dupe finder that integrates well with BTRFS
|
|
tldr # man for retards
|
|
trash-cli # oop! did not meant to delete that
|
|
jq # linting
|
|
];
|
|
};
|
|
}
|