From 7a60bb5ec4b45115c68b5fe019bd3d2f278bae78 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 16 Mar 2024 11:31:34 +0000 Subject: [PATCH] Fix package definition Missed calling the closure from callPackage, also add a default package now --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 9433c98..a57621f 100644 --- a/flake.nix +++ b/flake.nix @@ -21,6 +21,9 @@ iosevka-custom-aile = "Iosevka Custom Aile"; iosevka-custom-nerdfont = "IosevkaCustomNerdFont"; }; - packages.${system} = pkgs.callPackage ./default.nix; + packages.${system} = rec { + inherit (pkgs.callPackage ./default.nix {}) iosevka-custom-aile iosevka-custom-nerdfont; + default = iosevka-custom-nerdfont; + }; }; }