Commit e62fcc57c258
Changed files (2)
modules
profiles
overlays
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
+ ;
+}