From 179bf31d5edc90c826dacf0b06b149469d8d14fa Mon Sep 17 00:00:00 2001 From: Kleidi Bujari Date: Sat, 5 Apr 2025 14:58:10 -0400 Subject: automate hosts gen and bump nixpkgs --- machines/natest.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 machines/natest.nix (limited to 'machines/natest.nix') 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; +} -- cgit v1.3.1