infra/flake/den/templates/examples/modules/_example/ci/vm-bootable.nix

17 lines
303 B
Nix
Raw Normal View History

2025-12-01 13:23:24 +07:00
let
# Example: A static aspect for vm installers.
vm-bootable = {
nixos =
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
};
};
in
{
den.default.includes = [
# Example: static aspect
vm-bootable
];
}