Skip to content

Instantly share code, notes, and snippets.

@danth
Created December 29, 2023 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danth/17dd596a9f655a252c14b23a60dd2aaf to your computer and use it in GitHub Desktop.
Save danth/17dd596a9f655a252c14b23a60dd2aaf to your computer and use it in GitHub Desktop.
# Configuration for Stylix
# https://github.com/danth/stylix
# Genshin Impact by miHoYo
# https://genshin.hoyoverse.com/en
{ pkgs, config, ... }:
{
stylix = {
image = pkgs.fetchurl {
name = "Kazuha.jpg";
url = "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.hdwallpapers.in%2Fdownload%2Fkazuha_4k_hd_genshin_impact_3-HD.jpg";
sha256 = "u1OdK21k1sFBLQqLDjLBv/SRm6oiF36QRKrPTqjyohY=";
};
polarity = "light";
fonts = rec {
monospace = {
name = "Fira Code";
package = pkgs.fira-code;
};
sansSerif = {
name = "Cantarell";
package = pkgs.cantarell-fonts;
};
serif = sansSerif;
};
cursor = {
package = pkgs.qogir-icon-theme;
name = "Qogir";
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment