mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ config, pkgs, ... }: {
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
home.packages = [
|
|
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 = [ "fira-mono" ]; }) ];
|
|
|
|
xdg.configFile.hammerspoon = { source = ./hammerspoon; };
|
|
|
|
};
|
|
|
|
system.activationScripts.hammerspoon.text = ''
|
|
defaults write org.hammerspoon.Hammerspoon MJConfigFile "~/.config/hammerspoon/init.lua"
|
|
'';
|
|
|
|
}
|