nixos/core-destkop: add fonts
This commit is contained in:
parent
a26bb74da1
commit
311e7281e1
2 changed files with 8 additions and 0 deletions
|
@ -24,5 +24,12 @@
|
||||||
services.openssh.extraConfig = ''
|
services.openssh.extraConfig = ''
|
||||||
X11Forwarding yes
|
X11Forwarding yes
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Fonts
|
||||||
|
fonts.packages = with pkgs; [
|
||||||
|
corefonts
|
||||||
|
nerdfonts
|
||||||
|
roboto
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,6 +47,7 @@ in
|
||||||
'';
|
'';
|
||||||
|
|
||||||
environment.etc."xdg/kitty/kitty.conf".text = ''
|
environment.etc."xdg/kitty/kitty.conf".text = ''
|
||||||
|
font_family MesloLGS Nerd Font
|
||||||
font_size 10.0
|
font_size 10.0
|
||||||
scrollback_lines 10000
|
scrollback_lines 10000
|
||||||
window_border_width 0.5
|
window_border_width 0.5
|
||||||
|
|
Loading…
Reference in a new issue