Created
June 20, 2020 20:28
-
-
Save meh/089dc15e330e069f028b3c8e5dc20406 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nixpkgs.overlays = [ | |
(self: super: { | |
qemu_kvm = super.qemu_kvm.override { | |
cephSupport = true; | |
}; | |
libvirt = super.libvirt.override { | |
enableCeph = true; | |
enableIscsi = true; | |
}; | |
ceph = super.ceph.override { | |
jemalloc = pkgs.jemalloc; | |
}; | |
pythonPackages = super.pythonPackages.extend (self: super: { | |
cheroot = super.cheroot.overrideAttrs (old: { | |
doCheck = false; | |
}); | |
}); | |
}) | |
]; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment