flake.nix: fix exported packages

This commit is contained in:
Charlie Root 2025-03-18 13:40:27 +01:00
commit a440534cf2
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -18,15 +18,15 @@
); );
apps = eachSystem (system: let apps = eachSystem (system: let
user = import ./modules/user {pkgs = pkgsFor.${system};}; inherit (inputs.self.packages.${system}) fish helix;
in { in {
default = { default = {
type = "app"; type = "app";
program = "${user.packages.fish}/bin/fish"; program = "${fish}/bin/fish";
}; };
helix = { helix = {
type = "app"; type = "app";
program = "${user.packages.helix}/bin/hx"; program = "${helix}/bin/hx";
}; };
}); });
}; };