make every module contain config attribute and if module doesn't use module arguments, don't make it a function
18 lines
308 B
Nix
18 lines
308 B
Nix
|
|
{ lib, config, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
#virtualisation.waydroid.enable = true;
|
|
programs.virt-manager.enable = true;
|
|
virtualisation.libvirtd = {
|
|
enable = true;
|
|
qemu.ovmf = {
|
|
enable = true;
|
|
packages = [
|
|
pkgs.OVMFFull.fd
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|