bit structure changed and voice init

This commit is contained in:
twoneis 2023-12-27 16:38:38 +01:00
parent 51f6a03060
commit 7c948f74b9
7 changed files with 54 additions and 36 deletions

16
modules/system/fonts.nix Normal file
View 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" ];
};
};
}