This commit is contained in:
@@ -20,13 +20,8 @@ in
|
||||
base16Scheme
|
||||
override
|
||||
image
|
||||
fonts
|
||||
;
|
||||
fonts = {
|
||||
monospace = theme.monospaceFont;
|
||||
serif = config.stylix.fonts.monospace;
|
||||
sansSerif = config.stylix.fonts.monospace;
|
||||
emoji = config.stylix.fonts.monospace;
|
||||
};
|
||||
targets = import ../../../modules/stylix/targets.nix;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -23,14 +23,8 @@ in
|
||||
base16Scheme
|
||||
override
|
||||
image
|
||||
fonts
|
||||
;
|
||||
fonts = {
|
||||
monospace = theme.monospaceFont;
|
||||
serif = config.stylix.fonts.monospace;
|
||||
sansSerif = config.stylix.fonts.monospace;
|
||||
emoji = config.stylix.fonts.monospace;
|
||||
};
|
||||
autoEnable = true;
|
||||
targets.regreet.enable = false;
|
||||
};
|
||||
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
{ pkgs }:
|
||||
|
||||
let
|
||||
monospaceFont = {
|
||||
package = pkgs.iosevka-bin.override { variant = "SS08"; };
|
||||
name = "Iosevka Term SS08";
|
||||
};
|
||||
in
|
||||
{
|
||||
polarity = "dark";
|
||||
base16Scheme = ./zenwritten-dark.yaml;
|
||||
@@ -9,8 +15,11 @@
|
||||
image = pkgs.runCommand "solid-bg.png" { nativeBuildInputs = [ pkgs.imagemagick ]; } ''
|
||||
magick -size 1x1 xc:#191919 $out
|
||||
'';
|
||||
monospaceFont = {
|
||||
package = pkgs.iosevka-bin.override { variant = "SS08"; };
|
||||
name = "Iosevka Term SS08";
|
||||
inherit monospaceFont;
|
||||
fonts = {
|
||||
monospace = monospaceFont;
|
||||
serif = monospaceFont;
|
||||
sansSerif = monospaceFont;
|
||||
emoji = monospaceFont;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user