infra/flake/den/templates/default/modules/aspects/eg/ci-no-boot.nix
2025-12-01 13:23:24 +07:00

9 lines
181 B
Nix

{
eg.ci-no-boot = {
description = "Disables booting during CI";
nixos = {
boot.loader.grub.enable = false;
fileSystems."/".device = "/dev/null";
};
};
}