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