Move font packages to correct config option & add custom build of iosevka
This commit is contained in:
parent
2a7358a492
commit
7e32a07bd8
2 changed files with 31 additions and 3 deletions
26
overlay.nix
26
overlay.nix
|
@ -59,4 +59,30 @@ with inputs;
|
||||||
prev.pkgs.temurin-jre-bin
|
prev.pkgs.temurin-jre-bin
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
iosevka = prev.iosevka.override {
|
||||||
|
set = "Custom";
|
||||||
|
|
||||||
|
privateBuildPlan = {
|
||||||
|
family = "IosevkaCustom";
|
||||||
|
spacing = "term";
|
||||||
|
serifs = "sans";
|
||||||
|
noCvSs = false;
|
||||||
|
exportGlyphNames = true;
|
||||||
|
variants.inherits = "ss05";
|
||||||
|
|
||||||
|
weights = {
|
||||||
|
Regular = {
|
||||||
|
shape = 400;
|
||||||
|
menu = 400;
|
||||||
|
css = 400;
|
||||||
|
};
|
||||||
|
Bold = {
|
||||||
|
shape = 700;
|
||||||
|
menu = 700;
|
||||||
|
css = 700;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -117,9 +117,6 @@ with lib; {
|
||||||
gnomeExtensions.smile-complementary-extension
|
gnomeExtensions.smile-complementary-extension
|
||||||
jellyfin-media-player
|
jellyfin-media-player
|
||||||
libreoffice
|
libreoffice
|
||||||
merriweather
|
|
||||||
merriweather-sans
|
|
||||||
nerd-fonts
|
|
||||||
obsidian
|
obsidian
|
||||||
prismlauncher
|
prismlauncher
|
||||||
prismlauncher
|
prismlauncher
|
||||||
|
@ -129,6 +126,11 @@ with lib; {
|
||||||
yubioath-flutter
|
yubioath-flutter
|
||||||
];
|
];
|
||||||
|
|
||||||
|
fonts.packages = with pkgs; [
|
||||||
|
merriweather
|
||||||
|
iosevka
|
||||||
|
];
|
||||||
|
|
||||||
# Allow opening terminal applications from gnome app launcher.
|
# Allow opening terminal applications from gnome app launcher.
|
||||||
xdg.terminal-exec = {
|
xdg.terminal-exec = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue