12 lines
197 B
Nix
12 lines
197 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
qemu_full = prev.qemu_full.override {
|
|
cephSupport = false;
|
|
xenSupport = false;
|
|
};
|
|
})
|
|
];
|
|
}
|