From 3350f4df640c2645dd54cd236d72dcaf908f1f52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Wed, 6 Nov 2024 22:14:25 +0200 Subject: [PATCH] Add minimal exoplasim VM conf --- machine-confs/exoplasim.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 machine-confs/exoplasim.nix diff --git a/machine-confs/exoplasim.nix b/machine-confs/exoplasim.nix new file mode 100644 index 0000000..cfd2271 --- /dev/null +++ b/machine-confs/exoplasim.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: +{ + networking.hostName = "exoplasim"; + + imports = [ ../base.nix ]; + + # HARDWARE SPECIFIC + services.qemuGuest.enable = true; +}