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