flake.nix: fix exported packages
This commit is contained in:
parent
dc52a70980
commit
a440534cf2
1 changed files with 3 additions and 3 deletions
|
@ -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";
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue