first dionysos test

This commit is contained in:
chloe 2024-10-12 20:27:46 +02:00
parent 469b0391b7
commit ecce73e727
3 changed files with 63 additions and 0 deletions

View file

@ -24,6 +24,7 @@
self,
nixpkgs,
sops-nix,
nixos-generators,
...
}@inputs:
let
@ -87,6 +88,18 @@
];
format = "proxmox";
};
dionysos = nixos-generators.nixosGenerate {
system = "x86_64-linux";
specialArgs = {
diskSize = 20 * 1024;
inherit specialArgs;
};
modules = [
./hosts/dionysos/configuration.nix
];
format = "proxmox";
};
};
};
}