1
0
Fork 0

Configure fonts on mizuki

This commit is contained in:
Avery 2025-03-05 09:26:41 +00:00
parent a138a93873
commit 78db2beb74
Signed by: Avery
GPG key ID: B684FD451B692E04

View file

@ -2,6 +2,17 @@
environment.shells = with pkgs; [ zsh ];
fonts = {
packages = with pkgs; [ inter notonoto ];
fontconfig = {
defaultFonts = {
serif = [ "Inter" ];
sansSerif = [ "Inter" ];
monospace = [ "notonoto" ];
};
};
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";