diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-19 15:33:10 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-19 15:33:10 -0400 |
commit | a211782798426dbcecf6466f47309629a6546459 (patch) | |
tree | 32780a2a2d75a543fa910f0c833ce4bbcf53a88b /pkgs | |
parent | add libs to flake (diff) | |
download | dotfiles-nix-a211782798426dbcecf6466f47309629a6546459.tar.gz dotfiles-nix-a211782798426dbcecf6466f47309629a6546459.tar.bz2 dotfiles-nix-a211782798426dbcecf6466f47309629a6546459.zip |
refactor build fn in pkgs
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/default.nix | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 2ce9dac..98eb1ea 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,17 +1,5 @@ -{ - pkgs, - inputs, - system, - options, - ... -}: let - build = path: - pkgs.callPackage path { - inherit pkgs; - inherit inputs; - inherit system; - inherit options; - }; +{pkgs, ...} @ inputs: let + build = file: pkgs.callPackage file inputs; in { astal = build ./astal; unofficial-homestuck-collection = build ./unofficial-homestuck-collection; |