summaryrefslogtreecommitdiff
path: root/machines/natest.nix
blob: 1623bd3239e45a64f87b04a7437ca8742e6232cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}