iosevka/flake.nix

28 lines
728 B
Nix
Raw Normal View History

2024-03-03 20:45:29 +00:00
{
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=" ];
2024-03-03 20:45:29 +00:00
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs =
{ nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
result = pkgs.callPackage ./derivation.nix { };
in
{
names = import ./names.nix;
packages.${system} = {
inherit (result) iosevka-custom-aile iosevka-custom-etoile iosevka-custom-nerdfont;
default = result.iosevka-custom-nerdfont;
};
2024-03-03 21:08:52 +00:00
};
2024-03-03 20:45:29 +00:00
}