Add stylix but leave disabled

This commit is contained in:
panotaka
2023-12-06 00:19:38 -04:00
parent 813e203d39
commit 3832163f7a
5 changed files with 271 additions and 3 deletions

View File

@@ -0,0 +1,28 @@
{ config, pkgs, ... }:
{
stylix.image = ./wallpaper.jpg;
stylix.polarity = "dark";
stylix.fonts = {
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
monospace = {
package = pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; };
name = "JetBrainsMono Nerd Font";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
};
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 MiB

3
themes/targets/all.nix Normal file
View File

@@ -0,0 +1,3 @@
{
stylix.autoEnable = true;
}