Compare commits

...

2 commits

Author SHA1 Message Date
Evie Litherland-Smith 8848d889ab Update custom-build-plan, cleanup Makefile and flake a bit 2024-06-07 19:56:15 +01:00
Evie Litherland-Smith 7f40cec513 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/d691274a972b3165335d261cc4671335f5c67de9' (2024-03-14)
  → 'github:nixos/nixpkgs/e8057b67ebf307f01bdcc8fba94d94f75039d1f6' (2024-06-05)
2024-06-07 19:32:52 +01:00
4 changed files with 15 additions and 20 deletions

View file

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

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"; two = "straight-neck-serifless";
three = "flat-top"; three = "flat-top-serifless";
four = "semi-open"; four = "semi-open-serifless";
five = "oblique-arched"; five = "oblique-arched-serifless";
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": 1710451336, "lastModified": 1717602782,
"narHash": "sha256-pP86Pcfu3BrAvRO7R64x7hs+GaQrjFes+mEPowCfkxY=", "narHash": "sha256-pL9jeus5QpX5R+9rsp3hhZ+uplVHscNJh8n8VpqscM0=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d691274a972b3165335d261cc4671335f5c67de9", "rev": "e8057b67ebf307f01bdcc8fba94d94f75039d1f6",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -21,8 +21,10 @@
iosevka-custom-aile = "Iosevka Custom Aile"; iosevka-custom-aile = "Iosevka Custom Aile";
iosevka-custom-nerdfont = "IosevkaCustomNerdFont"; iosevka-custom-nerdfont = "IosevkaCustomNerdFont";
}; };
packages.${system} = rec { packages.${system} = let
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;
}; };
}; };