summaryrefslogtreecommitdiff
path: root/machines/natest.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/natest.nix')
-rw-r--r--machines/natest.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/machines/natest.nix b/machines/natest.nix
new file mode 100644
index 0000000..1623bd3
--- /dev/null
+++ b/machines/natest.nix
@@ -0,0 +1,13 @@
+{ flake, modulesPath, perSystem, ... }: {
+ imports = [
+ flake.outputs.nixosModules.disk
+ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")
+ (modulesPath + "/profiles/qemu-guest.nix")
+ ];
+
+ nixpkgs.hostPlatform = "x86_64-linux";
+ system.stateVersion = "24.11";
+
+ environment.systemPackages = [ perSystem.self.partitioner ];
+ virtualisation.diskSize = 16384;
+}