bit structure changed and voice init
This commit is contained in:
parent
51f6a03060
commit
7c948f74b9
7 changed files with 54 additions and 36 deletions
16
modules/system/fonts.nix
Normal file
16
modules/system/fonts.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, ... }: {
|
||||
# Configure fonts
|
||||
fonts.packages = with pkgs; [
|
||||
alegreya
|
||||
alegreya-sans
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
];
|
||||
|
||||
fonts.fontconfig = {
|
||||
defaultFonts = {
|
||||
serif = [ "Alegreya" ];
|
||||
sansSerif = [ "Alegreya Sans" ];
|
||||
monospace = [ "Fira Code Nerd Font" ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue