We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc87440 commit d9ad499Copy full SHA for d9ad499
flake.nix
@@ -16,7 +16,8 @@
16
});
17
18
packages = forEachSystem (system: {
19
- default = pkgsForEach.${system}.callPackage ./nix/package.nix {};
+ tailray = pkgsForEach.${system}.callPackage ./nix/package.nix {};
20
+ default = self.packages.${system}.tailray;
21
22
23
homeManagerModules = {
nix/hm-module.nix
@@ -17,7 +17,7 @@ in {
package =
mkPackageOption pkgs "tailray" {}
// {
- default = self.packages.${pkgs.system}.default;
+ default = self.packages.${pkgs.system}.tailray;
};
0 commit comments