Skip to content

Instantly share code, notes, and snippets.

@danth
Created April 20, 2023 18:10
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/5e0b263eeed99aafcef2a2eca3e8548d to your computer and use it in GitHub Desktop.
Save danth/5e0b263eeed99aafcef2a2eca3e8548d to your computer and use it in GitHub Desktop.
# Configuration for Stylix
# https://github.com/danth/stylix
# Atlantis Garbage Worker by Grady Frederick
# https://www.artstation.com/artwork/W2GERJ
{ pkgs, ... }:
{
stylix = {
image = pkgs.fetchurl {
url = "https://cdnb.artstation.com/p/assets/images/images/016/252/301/4k/grady-frederick-atlantis-garbageman-v2.jpg";
sha256 = "tAX6qTm1/7v/auvCHrmRswJsScNieSWpXV6TCBhRP7Y=";
};
polarity = "dark";
fonts = {
serif = {
name = "Cantarell";
package = pkgs.cantarell-fonts;
};
sansSerif = {
name = "Cantarell";
package = pkgs.cantarell-fonts;
};
monospace = {
name = "Fira Code";
package = pkgs.fira-code;
};
sizes = {
applications = 11;
desktop = 11;
};
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment