Update NixOS config.
This commit is contained in:
parent
a4b1d0f833
commit
cf54076abc
1 changed files with 32 additions and 4 deletions
36
home.nix
36
home.nix
|
@ -23,6 +23,16 @@
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# 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
|
||||||
|
|
||||||
|
@ -115,11 +125,29 @@
|
||||||
# custom settings
|
# custom settings
|
||||||
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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue