dotfiles/modules/darwin/utilities.nix

27 lines
588 B
Nix
Raw Normal View History

2022-06-21 17:51:27 -04:00
{ config, pkgs, lib, ... }: {
2022-06-13 23:43:49 -04:00
home-manager.users.${config.user} = {
2022-06-18 13:17:11 -04:00
home.packages = with pkgs; [
2022-07-01 08:45:07 -04:00
# visidata # CSV inspector
2022-06-13 23:43:49 -04:00
dos2unix # Convert Windows text files
inetutils # Includes telnet
youtube-dl # Convert web videos
pandoc # Convert text documents
mpd # TUI slideshows
awscli2
awslogs
kubectl
k9s
noti # Create notifications programmatically
];
2022-06-21 17:51:27 -04:00
programs.fish.shellAbbrs = {
# Add noti for ghpr in Darwin
ghpr = lib.mkForce "gh pr create && sleep 3 && noti gh run watch";
};
2022-06-18 13:17:11 -04:00
};
2022-06-13 23:43:49 -04:00
}