Add social

This commit is contained in:
muon 2024-06-07 00:05:58 +00:00
parent 9cdce8f2fa
commit 7da8f05b24
8 changed files with 68 additions and 9 deletions

View file

@ -18,5 +18,29 @@ in {
config = lib.mkIf cfg.enable {
stylix.base16Scheme = cfg.scheme;
stylix.image = cfg.wallpaper;
stylix.fonts = {
monospace = {
package = pkgs.mononoki;
name = "Mononoki Nerd Font";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "OpenMoji Color";
};
};
# fonts = with pkgs; [
# openmoji-color
# mononoki
# (nerdfonts.override { fonts = [ "Mononoki" ]; })
# ];
# fontconfig = {
# hinting.autohint = true;
# defaultFonts = {
# emoji = [ "OpenMoji Color" ];
# };
# };
};
}