This commit is contained in:
mtgmonkey 2025-05-31 08:11:46 -04:00
commit 97edab4950
6 changed files with 929 additions and 0 deletions

23
home/stylix.nix Executable file
View file

@ -0,0 +1,23 @@
{
config,
pkgs,
...
}: {
stylix = {
enable = true;
# rebecca has lavener bkg
# tube has dark gray bkg
base16Scheme = "${pkgs.base16-schemes}/share/themes/tube.yaml";
polarity = "dark";
image = ./stylix/nix-wallpaper-gear.png;
fonts = {
serif = config.stylix.fonts.monospace;
sansSerif = config.stylix.fonts.monospace;
emoji = config.stylix.fonts.monospace;
monospace = {
package = pkgs.miracode;
name = "Miracode";
};
};
};
}