dotfiles/modules/darwin/utilities.nix
2022-06-18 13:17:11 -04:00

43 lines
851 B
Nix

{ config, pkgs, ... }: {
home-manager.users.${config.user} = {
home.packages = with pkgs; [
visidata # CSV inspector
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
];
programs.alacritty.settings = {
shell.program = "${pkgs.fish}/bin/fish";
keybindings = [
{
key = "F";
mods = "Super";
action = "ToggleSimpleFullscreen";
}
{
key = "L";
mods = "Super";
chars = "\\x1F";
}
];
};
};
fonts.fonts = with pkgs;
[ (nerdfonts.override { fonts = [ "FiraCode" ]; }) ];
}