Update NixOS config.

This commit is contained in:
Elias Gasparis 2024-11-22 21:00:53 +08:00
parent a4b1d0f833
commit cf54076abc

View file

@ -24,6 +24,16 @@
# here is some command line tools I use frequently # here is some command line tools I use frequently
# feel free to add your own or remove some of them # feel free to add your own or remove some of them
# font stuff for alacritty
pkgs.iosevka #font program
(pkgs.nerdfonts.override {
fonts = [
"IBMPlexMono"
"Iosevka"
"IosevkaTerm"
];
})
xreader #pdf viewer xreader #pdf viewer
fastfetch fastfetch
@ -116,10 +126,28 @@
settings = { settings = {
env.TERM = "xterm-256color"; env.TERM = "xterm-256color";
font = { font = {
size = 14; normal = {
# this causes error family = "IosevkaTerm Nerd Font";
#draw_bold_text_with_bright_colors = true; style = "Regular";
}; };
bold = {
family = "IosevkaTerm Nerd Font";
style = "Bold";
};
italic = {
family = "IosevkaTerm Nerd Font";
style = "Italic";
};
bold_italic = {
family = "IosevkaTerm Nerd Font";
style = "Bold Italic";
};
size = 16;
};
# font = {
# size = 18;
# };
window.dimensions = { window.dimensions = {
lines = 40; lines = 40;
columns = 200; columns = 200;