mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-07 07:09:15 +00:00
ref(nix): reduce coupling in hiosevka
This commit is contained in:
parent
872b79d6d1
commit
bd6e94ec8d
2 changed files with 23 additions and 37 deletions
|
|
@ -6,7 +6,7 @@
|
|||
...
|
||||
}: let
|
||||
mkNerdFont = import ./mkNerdFont.nix {inherit pkgs unstable;};
|
||||
in {
|
||||
in rec {
|
||||
logisim-evolution = import ./logisim-evolution.nix {inherit pkgs;};
|
||||
|
||||
necrolib = import ./necrolib.nix {
|
||||
|
|
@ -14,10 +14,13 @@ in {
|
|||
inherit opam-nix;
|
||||
};
|
||||
|
||||
inherit
|
||||
(import ./hiosevka {inherit pkgs unstable mkNerdFont;})
|
||||
hiosevka
|
||||
hiosevka-nerd-font-mono
|
||||
hiosevka-nerd-font-propo
|
||||
;
|
||||
hiosevka = import ./hiosevka {inherit pkgs;};
|
||||
hiosevka-nerd-font-mono = mkNerdFont {
|
||||
font = hiosevka;
|
||||
extraArgs = ["--name {/.}-NFM" "--use-single-width-glyphs"];
|
||||
};
|
||||
hiosevka-nerd-font-propo = mkNerdFont {
|
||||
font = hiosevka;
|
||||
extraArgs = ["--name {/.}-NFP" "--variable-width-glyphs"];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue