Last active
June 12, 2024 19:35
-
-
Save danth/17dd596a9f655a252c14b23a60dd2aaf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration for Stylix | |
# https://github.com/danth/stylix | |
# Genshin Impact by miHoYo | |
# https://genshin.hoyoverse.com/en | |
{ pkgs, config, ... }: | |
{ | |
stylix = { | |
enable = true; | |
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