2022-06-14 11:54:18 +00:00
|
|
|
{ config, pkgs, ... }: {
|
2022-06-14 03:43:49 +00:00
|
|
|
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
|
2022-06-18 17:17:11 +00:00
|
|
|
home.packages = with pkgs; [
|
2022-06-14 03:43:49 +00:00
|
|
|
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
|
2022-06-18 21:16:38 +00:00
|
|
|
(pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; })
|
2022-06-14 03:43:49 +00:00
|
|
|
];
|
|
|
|
|
2022-06-14 11:43:59 +00:00
|
|
|
programs.alacritty.settings = {
|
2022-06-14 11:54:18 +00:00
|
|
|
shell.program = "${pkgs.fish}/bin/fish";
|
2022-06-14 11:43:59 +00:00
|
|
|
keybindings = [
|
|
|
|
{
|
|
|
|
key = "F";
|
|
|
|
mods = "Super";
|
|
|
|
action = "ToggleSimpleFullscreen";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
key = "L";
|
|
|
|
mods = "Super";
|
|
|
|
chars = "\\x1F";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2022-06-14 11:00:12 +00:00
|
|
|
|
2022-06-18 17:17:11 +00:00
|
|
|
};
|
|
|
|
|
2022-06-18 21:16:38 +00:00
|
|
|
#fonts.fonts = with pkgs;
|
|
|
|
# [ (nerdfonts.override { fonts = [ "Victor Mono" ]; }) ];
|
2022-06-14 03:43:49 +00:00
|
|
|
|
|
|
|
}
|