1{ lib, ... }: 2 3{ 4 name = "non-switchable-system"; 5 6 meta.maintainers = with lib.maintainers; [ nikstur ]; 7 8 nodes.machine = { 9 system.switch.enable = false; 10 }; 11 12 testScript = '' 13 machine.succeed("test ! -e /run/current-system/bin/switch-to-configuration") 14 ''; 15}