ref(nix): mypkgs

This commit is contained in:
Léana 江 2024-02-20 21:21:49 +01:00 committed by Léana 江
parent f8399a3e2b
commit 1d2d84bf1f
3 changed files with 14 additions and 12 deletions

View file

@ -1,14 +1,19 @@
{
pkgs,
unstable,
system,
opam-nix,
...
}: {
logisim-evolution = pkgs.callPackage ./logisim-evolution.nix {};
necrolib = pkgs.callPackage ./necrolib.nix {inherit opam-nix;};
logisim-evolution = import ./logisim-evolution.nix {inherit pkgs;};
necrolib = import ./necrolib.nix {
inherit pkgs system;
inherit opam-nix;
};
inherit
(pkgs.callPackage ./hiosevka {inherit unstable;})
(import ./hiosevka {inherit pkgs unstable;})
hiosevka
hiosevka-nerd-font
;