From d697dce92bb19b03ea09747d69cd7997fab6a9a4 Mon Sep 17 00:00:00 2001 From: Alex Davies Date: Tue, 14 May 2024 08:54:50 -0300 Subject: [PATCH] Bigger, better, Virtual machines --- nixos/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 3a7d9c3..7a34de4 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -45,6 +45,12 @@ networking.hostName = specialArgs.hostname; # Define your hostname. networking.networkmanager.enable = true; + virtualisation.vmVariant = { + # following configuration is added only when building VM with build-vm + virtualisation.cores = 4; + virtualisation.memorySize = 4096; + }; + # This will add each flake input as a registry # To make nix3 commands consistent with your flake nix.registry = (lib.mapAttrs (_: flake: {inherit flake;})) ((lib.filterAttrs (_: lib.isType "flake")) inputs);