2024-03-24 18:02:31 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
virtualisation.vmVariant = {
|
|
|
|
# following configuration is added only when building VM with build-vm
|
|
|
|
virtualisation = {
|
|
|
|
memorySize = 8192;
|
|
|
|
cores = 6;
|
|
|
|
graphics = true;
|
|
|
|
};
|
2024-03-24 18:02:32 +00:00
|
|
|
users.users.sammy.initialPassword = "test";
|
2024-03-24 18:02:31 +00:00
|
|
|
};
|
|
|
|
}
|