From a440534cf2a5613809b1aa66c95f9d9c6eab9210 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Tue, 18 Mar 2025 13:40:27 +0100 Subject: [PATCH] flake.nix: fix exported packages --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 18d488c..ab87d7b 100644 --- a/flake.nix +++ b/flake.nix @@ -18,15 +18,15 @@ ); apps = eachSystem (system: let - user = import ./modules/user {pkgs = pkgsFor.${system};}; + inherit (inputs.self.packages.${system}) fish helix; in { default = { type = "app"; - program = "${user.packages.fish}/bin/fish"; + program = "${fish}/bin/fish"; }; helix = { type = "app"; - program = "${user.packages.helix}/bin/hx"; + program = "${helix}/bin/hx"; }; }); };