Commit e62fcc57c258

Vincent Demeester <vincent@sbr.pm>
2019-03-08 14:15:00
Add an unstable overlay…
… to get packages from unstable 💃 Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent d715aba
Changed files (2)
modules/profiles/nix-config.nix
@@ -67,6 +67,7 @@ in
     nixpkgs = {
       overlays = [
         (import ../../overlays/sbr.overlay.nix)
+        (import ../../overlays/unstable.overlay.nix)
       ];
       config = {
         allowUnfree = true;
overlays/unstable.overlay.nix
@@ -0,0 +1,8 @@
+_: _: let
+  unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
+  unstable = import unstableTarball { overlays = []; };
+in {
+  inherit (unstable)
+  cachix
+  ;
+}