Compare commits

..

No commits in common. "8848d889ab9089dff04a3ffc80d2cc8a61d545c4" and "6e305fa1d05a97343d47f0b6865e10a870fc8d4e" have entirely different histories.

4 changed files with 21 additions and 16 deletions

View file

@ -1,9 +1,16 @@
.PHONY: build copy .PHONY: all copy build update
build: all: copy
nix build --max-jobs 1 .#iosevka-custom-aile \
.#iosevka-custom-nerdfont
copy: build copy: build
nix copy --to ssh://pixelifytica@legion ./result nix copy --to ssh://pixelifytica@legion \
rm ./result .#iosevka-custom-aile \
.#iosevka-custom-nerdfont
build:
nix build --no-link --max-jobs 1 \
.#iosevka-custom-aile \
.#iosevka-custom-nerdfont
update:
nix flake update --commit-lock-file

View file

@ -45,10 +45,10 @@
lower-chi = "semi-chancery-straight"; lower-chi = "semi-chancery-straight";
zero = "tall-slashed"; zero = "tall-slashed";
one = "no-base"; one = "no-base";
two = "straight-neck-serifless"; two = "straight-neck";
three = "flat-top-serifless"; three = "flat-top";
four = "semi-open-serifless"; four = "semi-open";
five = "oblique-arched-serifless"; five = "oblique-arched";
six = "open-contour"; six = "open-contour";
seven = "bend-serifless-crossbar"; seven = "bend-serifless-crossbar";
eight = "two-circles"; eight = "two-circles";

View file

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1717602782, "lastModified": 1710451336,
"narHash": "sha256-pL9jeus5QpX5R+9rsp3hhZ+uplVHscNJh8n8VpqscM0=", "narHash": "sha256-pP86Pcfu3BrAvRO7R64x7hs+GaQrjFes+mEPowCfkxY=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e8057b67ebf307f01bdcc8fba94d94f75039d1f6", "rev": "d691274a972b3165335d261cc4671335f5c67de9",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

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