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