dotfiles/modules/shell/utilities.nix

65 lines
1.3 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }:
2022-04-29 01:23:43 +00:00
let
ignorePatterns = ''
!.env*
!.github/
!.gitignore
!*.tfvars
.terraform/
.target/
/Library/'';
2022-04-29 01:23:43 +00:00
in {
2022-04-28 23:20:46 +00:00
home-manager.users.${config.user} = {
2022-04-30 14:21:43 +00:00
home.packages = with pkgs; [
2022-04-30 23:28:19 +00:00
unzip # Extract zips
rsync # Copy folders
ripgrep # grep
bat # cat
fd # find
sd # sed
jq # JSON manipulation
tealdeer # Cheatsheets
tree # View directory hierarchy
htop # Show system processes
glow # Pretty markdown previews
qrencode # Generate qr codes
2022-08-18 05:09:23 +00:00
vimv-rs # Batch rename files
2022-04-30 23:28:19 +00:00
dig # DNS lookup
2022-06-27 01:53:08 +00:00
lf # File viewer
2022-10-07 03:31:14 +00:00
whois # Lookup IPs
2022-10-16 14:25:47 +00:00
age # Encryption
];
2022-05-06 13:29:25 +00:00
programs.zoxide.enable = true; # Shortcut jump command
2022-04-30 14:21:43 +00:00
home.file = {
".rgignore".text = ignorePatterns;
".fdignore".text = ignorePatterns;
2022-04-30 23:28:19 +00:00
".digrc".text = "+noall +answer"; # Cleaner dig commands
};
2022-04-30 14:21:43 +00:00
programs.fish.shellAbbrs = {
cat = "bat"; # Swap cat with bat
};
programs.fish.functions = {
ping = {
description = "Improved ping";
argumentNames = "target";
body = "${pkgs.prettyping}/bin/prettyping --nolegend $target";
2022-04-30 14:21:43 +00:00
};
qr = {
body =
"${pkgs.qrencode}/bin/qrencode $argv[1] -o /tmp/qr.png | open /tmp/qr.png"; # Fix for non-macOS
2022-04-30 14:21:43 +00:00
};
};
2022-04-29 00:46:00 +00:00
};
2022-04-28 23:20:46 +00:00
}