From 750a106e0b24d7aed8f29cce4b52554326cf6f26 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Sat, 8 Jul 2023 02:17:59 +0300 Subject: [PATCH] recreate matrix vm with fedora --- profiles/servers/matrix.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/profiles/servers/matrix.nix b/profiles/servers/matrix.nix index 1da172a..e1bf49e 100644 --- a/profiles/servers/matrix.nix +++ b/profiles/servers/matrix.nix @@ -1,15 +1,15 @@ { config, lib, pkgs, ... }: { - virtualisation.libvirt.guests.arch-matrix = { + virtualisation.libvirt.guests.fedora-synapse = { + autoStart = true; user = config.mainuser; group = "libvirtd"; - # I need more ram... temporarily disabled - autoStart = true; + uefi = true; memory = 2 * 1024; cpu = { - sockets = 1; cores = 1; threads = 1; + sockets = 1; cores = 1; threads = 2; }; devices = { - disks = [ { diskFile = "/media/nas/libvirt/images/matrix-server.qcow2"; } ]; + disks = [ { diskFile = "/media/nas/libvirt/images/fedora-synapse.img"; type = "raw"; } ]; network = { macAddress = "00:16:3e:5b:49:bf"; interfaceType = "bridge";