Font config
This commit is contained in:
parent
9ad8f102bc
commit
c880f2a541
|
@ -10,6 +10,7 @@
|
|||
imports = [
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../modules/fonts.nix
|
||||
../../modules/sound.nix
|
||||
../../modules/opengl.nix
|
||||
../../modules/ssh.nix
|
||||
|
|
|
@ -13,6 +13,7 @@ in {
|
|||
./hardware-configuration.nix
|
||||
../../home-manager/default.nix
|
||||
../../modules/earlyoom.nix
|
||||
../../modules/fonts.nix
|
||||
../../modules/opengl.nix
|
||||
../../modules/remote-builder.nix
|
||||
../../modules/sound.nix
|
||||
|
|
7
modules/fonts.nix
Normal file
7
modules/fonts.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
fonts.fontconfig.defaultFonts = {
|
||||
monospace = [ "Fira Code" "Source Code Pro For Powerline" "Roboto Mono" "DejaVu Sans Mono" ];
|
||||
sansSerif = [ "Roboto Regular" "DejaVu Sans" ];
|
||||
serif = [ "Roboto Slab Regular" "DejaVu Serif" ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue