mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 00:57:22 +01:00
13 lines
202 B
Nix
13 lines
202 B
Nix
{ config, lib, ... }:
|
|
{
|
|
# imports = [
|
|
# inputs.microvm.nixosModules.host
|
|
# ];
|
|
|
|
config = lib.mkIf (config.guests != { }) {
|
|
|
|
microvm = {
|
|
hypervisor = lib.mkDefault "qemu";
|
|
};
|
|
};
|
|
}
|