home | added alarcitty config
This commit is contained in:
parent
f4560e59e2
commit
692fbd1831
2 changed files with 35 additions and 0 deletions
|
|
@ -7,6 +7,7 @@
|
|||
./mpv.nix
|
||||
./tmux.nix
|
||||
./neovim.nix
|
||||
./terminals.nix
|
||||
];
|
||||
home = {
|
||||
username = "don";
|
||||
|
|
|
|||
34
home/terminals.nix
Normal file
34
home/terminals.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
window.opacity = 0.8;
|
||||
decorations_theme_variant = "dark";
|
||||
font = {
|
||||
normal = {
|
||||
family = "monospace";
|
||||
style = "Regular";
|
||||
};
|
||||
bold = {
|
||||
family = "monospace";
|
||||
style = "Bold";
|
||||
};
|
||||
italic = {
|
||||
family = "monospace";
|
||||
style = "Italic";
|
||||
};
|
||||
bold_italic = {
|
||||
family = "monospace";
|
||||
style = "Bold Italic";
|
||||
};
|
||||
size = 9.0;
|
||||
};
|
||||
bell = {
|
||||
animation = "EaseOutExpo";
|
||||
duration = 500;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
# vim: shiftwidth=2 tabstop=2 expandtab
|
||||
Loading…
Add table
Add a link
Reference in a new issue