diff --git a/overlays/chromium.nix b/overlays/chromium.nix new file mode 100644 index 0000000..22a742e --- /dev/null +++ b/overlays/chromium.nix @@ -0,0 +1,13 @@ +final: prev: +let + nixpkgsSrc = builtins.fetchTarball { + url = "https://github.com/NixOS/nixpkgs/archive/d8f8f31af9d77a48220e4e8a301d1e79774cb7d2.tar.gz"; + sha256 = "sha256:1laghvd60pmlpiqm182qb658rs4k6d88id25n9byh0d1gxl2rpv6"; + }; + nixpkgs = import nixpkgsSrc { + inherit (prev) system config; + }; +in +{ + chromium = nixpkgs.chromium; +}