about summary refs log tree commit diff
path: root/nix/hosts
diff options
context:
space:
mode:
authorEmile <git@emile.space>2025-02-11 00:01:35 +0100
committerEmile <git@emile.space>2025-02-11 00:01:35 +0100
commit951726c6ee34d3b9733d739dba3c4ee3c873bc7b (patch)
treed833bcde3dbb04041d7645750f9d009774e5add4 /nix/hosts
parent906026e924e3aac0f0ed32ec8ab2f7468e8e1c0a (diff)
corrino: libvirtnix, formatted
Diffstat (limited to 'nix/hosts')
-rw-r--r--nix/hosts/corrino/vm.nix77
1 files changed, 38 insertions, 39 deletions
diff --git a/nix/hosts/corrino/vm.nix b/nix/hosts/corrino/vm.nix
index 7fcf4af..37d1356 100644
--- a/nix/hosts/corrino/vm.nix
+++ b/nix/hosts/corrino/vm.nix
@@ -1,43 +1,42 @@
 { pkgs, ... }:
 
 {
-	services.emile.libvirtnix = {
-		enable = true;
-		instances = {
-
-			vm1 = {
-				domain = {
-					name = "VM1";
-					title = "vm one";
-					description = "The first VM";
-					id = 1;
-
-					uuid = "E34DE478-1402-45BB-B3FD-FC960549258E";
-					genid = "CA1E2462-1E9D-404C-8DDB-19EEF9D9651B";
-
-					packages = {
-						libvirt = pkgs.libvirt;
-						qemu = pkgs.qemu;
-					};
-					memory = 1024;
-				};
-			};
-
-			vm2 = {
-				domain = {
-					name = "VM2";
-					title = "vm one";
-					description = "The second VM";
-					id = 2;
-
-					uuid = "E34DE478-1402-45BB-B3FD-FC960549258E";
-					genid = "002D0D8F-B21A-4001-92BF-2313707EED9D";
-
-					memory = 2048;
-				};
-			};
-
-		};
-	};
+  services.emile.libvirtnix = {
+    enable = true;
+    instances = {
+
+      vm1 = {
+        domain = {
+          name = "VM1";
+          title = "vm one";
+          description = "The first VM";
+          id = 1;
+
+          uuid = "E34DE478-1402-45BB-B3FD-FC960549258E";
+          genid = "CA1E2462-1E9D-404C-8DDB-19EEF9D9651B";
+
+          packages = {
+            libvirt = pkgs.libvirt;
+            qemu = pkgs.qemu;
+          };
+          memory = 1024;
+        };
+      };
+
+      vm2 = {
+        domain = {
+          name = "VM2";
+          title = "vm one";
+          description = "The second VM";
+          id = 2;
+
+          uuid = "E34DE478-1402-45BB-B3FD-FC960549258E";
+          genid = "002D0D8F-B21A-4001-92BF-2313707EED9D";
+
+          memory = 2048;
+        };
+      };
+
+    };
+  };
 }
-