Compare commits
No commits in common. "025cd39d2fdfa1d2c8d74c36ce2301516bf68c76" and "7467b40e30b9954a7e75fe0afb704971a4b22249" have entirely different histories.
025cd39d2f
...
7467b40e30
1 changed files with 4 additions and 9 deletions
13
flake.nix
13
flake.nix
|
|
@ -8,17 +8,12 @@
|
|||
outputs = { self, nixpkgs }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
overlay = final: prev: {
|
||||
waterfox = final.callPackage ./pkgs/waterfox/default.nix { };
|
||||
waterfox-bin = final.callPackage ./pkgs/waterfox-bin/default.nix { };
|
||||
};
|
||||
pkgs = nixpkgs.legacyPackages.${system}.extend overlay;
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
overlays.default = overlay;
|
||||
|
||||
packages.${system} = {
|
||||
inherit (pkgs) waterfox waterfox-bin;
|
||||
default = pkgs.waterfox-bin;
|
||||
waterfox = pkgs.callPackage ./pkgs/waterfox/default.nix { };
|
||||
waterfox-bin = pkgs.callPackage ./pkgs/waterfox-bin/default.nix { };
|
||||
default = self.packages.${system}.waterfox-bin;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue