wow
This commit is contained in:
commit
7467b40e30
7 changed files with 393 additions and 0 deletions
19
flake.nix
Normal file
19
flake.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
description = "imnyang's nix packages";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
packages.${system} = {
|
||||
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