iosevka/flake.nix
Evie Litherland-Smith 7a60bb5ec4 Fix package definition
Missed calling the closure from callPackage, also add a default
package now
2024-03-16 11:31:34 +00:00

30 lines
749 B
Nix

{
description = "My customised build of Iosevka font";
nixConfig = {
extra-substituters = ["https://nix.xenia.me.uk"];
extra-trusted-public-keys = ["nix.xenia.me.uk:VaQu+8hshk7aSbW3z91pgkKbYeAcO3Q0AomqP8RaaLc="];
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = {
self,
nixpkgs,
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {inherit system;};
in {
names = {
iosevka-custom-aile = "Iosevka Custom Aile";
iosevka-custom-nerdfont = "IosevkaCustomNerdFont";
};
packages.${system} = rec {
inherit (pkgs.callPackage ./default.nix {}) iosevka-custom-aile iosevka-custom-nerdfont;
default = iosevka-custom-nerdfont;
};
};
}