mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
ref(nix): formatted with nixfmt-rfc-style
This commit is contained in:
parent
36a2265325
commit
23404db605
40 changed files with 574 additions and 474 deletions
|
|
@ -3,27 +3,33 @@
|
|||
unstable,
|
||||
opam-nix,
|
||||
alt-ergo,
|
||||
}: let
|
||||
mkNerdFont = callPackage ./mkNerdFont.nix {inherit (unstable) nerd-font-patcher;};
|
||||
}:
|
||||
let
|
||||
mkNerdFont = callPackage ./mkNerdFont.nix { inherit (unstable) nerd-font-patcher; };
|
||||
|
||||
logisim-evolution = callPackage ./logisim-evolution.nix {};
|
||||
logisim-evolution = callPackage ./logisim-evolution.nix { };
|
||||
|
||||
necrolib = callPackage ./necrolib.nix {
|
||||
inherit opam-nix;
|
||||
};
|
||||
necrolib = callPackage ./necrolib.nix { inherit opam-nix; };
|
||||
|
||||
hiosevka = callPackage ./hiosevka {};
|
||||
hiosevka = callPackage ./hiosevka { };
|
||||
hiosevka-nerd-font-mono = mkNerdFont {
|
||||
font = hiosevka;
|
||||
extraArgs = ["--name {/.}-NFM" "--use-single-width-glyphs"];
|
||||
extraArgs = [
|
||||
"--name {/.}-NFM"
|
||||
"--use-single-width-glyphs"
|
||||
];
|
||||
};
|
||||
hiosevka-nerd-font-propo = mkNerdFont {
|
||||
font = hiosevka;
|
||||
extraArgs = ["--name {/.}-NFP" "--variable-width-glyphs"];
|
||||
extraArgs = [
|
||||
"--name {/.}-NFP"
|
||||
"--variable-width-glyphs"
|
||||
];
|
||||
};
|
||||
|
||||
why3 = callPackage ./why3.nix {inherit alt-ergo;};
|
||||
in {
|
||||
why3 = callPackage ./why3.nix { inherit alt-ergo; };
|
||||
in
|
||||
{
|
||||
myPkgs = {
|
||||
inherit
|
||||
logisim-evolution
|
||||
|
|
@ -36,8 +42,6 @@ in {
|
|||
};
|
||||
|
||||
myLib = {
|
||||
inherit
|
||||
mkNerdFont
|
||||
;
|
||||
inherit mkNerdFont;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue