mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:43:55 -05:00
home-manager: added new alacritty config
This commit is contained in:
parent
f01946f1ec
commit
8c13f018b9
12
home/aly.nix
12
home/aly.nix
|
@ -30,17 +30,23 @@
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
colors = {
|
||||||
|
primary = {
|
||||||
|
foreground = "#fafafa";
|
||||||
|
background = "#000000";
|
||||||
|
};
|
||||||
|
draw_bold_text_with_bright_colors = true;
|
||||||
|
};
|
||||||
font = {
|
font = {
|
||||||
normal = { family = "DroidSansM Nerd Font Mono"; style = "Regular"; };
|
normal = { family = "DroidSansM Nerd Font Mono"; style = "Regular"; };
|
||||||
size = 11;
|
size = 11;
|
||||||
};
|
};
|
||||||
selection.save_to_clipboard = true;
|
selection.save_to_clipboard = true;
|
||||||
window = {
|
window = {
|
||||||
# blur = true;
|
blur = true;
|
||||||
decorations = "None";
|
# decorations = "None";
|
||||||
dynamic_padding = true;
|
dynamic_padding = true;
|
||||||
opacity = 0.8;
|
opacity = 0.8;
|
||||||
startup_mode = "Maximized";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue