migrate terminal config to nix

This commit is contained in:
Benjamin Palko 2024-07-14 23:19:06 -04:00
parent 8d5d84dedb
commit 5eec1d1c38
4 changed files with 64 additions and 38 deletions

57
home-manager/terminal.nix Normal file
View file

@ -0,0 +1,57 @@
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
shellIntegration.enableZshIntegration = true;
font = {
name = "JetBrainsMono NF";
size = 11;
};
settings = {
enable_audio_bell = "no";
window_margin_width = 10;
background_opacity = "0.5";
confirm_os_window_close = 0;
};
};
programs.zsh = {
enable = true;
autocd = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
initExtra = "neofetch --ascii ~/dotfiles/aperture.txt";
shellAliases = {
rebuild = "sudo nixos-rebuild switch";
dotfiles = "cd ~/dotfiles/";
nv = "nvim";
};
oh-my-zsh = {
enable = true;
plugins = [
"git"
"gh"
"bun"
];
theme = "robbyrussell";
};
history = {
path = "~/.histfile";
size = 10000;
};
};
programs.starship = {
enable = true;
settings = {
add_newline = false;
};
};
fonts.fontconfig.enable = true;
home.packages = [ (pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) ];
}