Fix package definition

Missed calling the closure from callPackage, also add a default
package now
This commit is contained in:
Evie Litherland-Smith 2024-03-16 11:31:34 +00:00
parent 06d68a3118
commit 7a60bb5ec4

View file

@ -21,6 +21,9 @@
iosevka-custom-aile = "Iosevka Custom Aile";
iosevka-custom-nerdfont = "IosevkaCustomNerdFont";
};
packages.${system} = pkgs.callPackage ./default.nix;
packages.${system} = rec {
inherit (pkgs.callPackage ./default.nix {}) iosevka-custom-aile iosevka-custom-nerdfont;
default = iosevka-custom-nerdfont;
};
};
}