diff --git a/Makefile b/Makefile index 6843e52..8930cab 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,9 @@ -.PHONY: all copy build update - -all: copy - -copy: build - nix copy --to ssh://pixelifytica@legion \ - .#iosevka-custom-aile \ - .#iosevka-custom-nerdfont +.PHONY: build copy build: - nix build --no-link --max-jobs 1 \ - .#iosevka-custom-aile \ + nix build --max-jobs 1 .#iosevka-custom-aile \ .#iosevka-custom-nerdfont -update: - nix flake update --commit-lock-file +copy: build + nix copy --to ssh://pixelifytica@legion ./result + rm ./result diff --git a/custom-build-plan.nix b/custom-build-plan.nix index fa1bf58..728c802 100644 --- a/custom-build-plan.nix +++ b/custom-build-plan.nix @@ -45,10 +45,10 @@ lower-chi = "semi-chancery-straight"; zero = "tall-slashed"; one = "no-base"; - two = "straight-neck"; - three = "flat-top"; - four = "semi-open"; - five = "oblique-arched"; + two = "straight-neck-serifless"; + three = "flat-top-serifless"; + four = "semi-open-serifless"; + five = "oblique-arched-serifless"; six = "open-contour"; seven = "bend-serifless-crossbar"; eight = "two-circles"; diff --git a/flake.nix b/flake.nix index a57621f..fa1cc4d 100644 --- a/flake.nix +++ b/flake.nix @@ -21,8 +21,10 @@ iosevka-custom-aile = "Iosevka Custom Aile"; iosevka-custom-nerdfont = "IosevkaCustomNerdFont"; }; - packages.${system} = rec { + packages.${system} = let inherit (pkgs.callPackage ./default.nix {}) iosevka-custom-aile iosevka-custom-nerdfont; + in { + inherit iosevka-custom-aile iosevka-custom-nerdfont; default = iosevka-custom-nerdfont; }; };