nixpkgs-immich/nixos/tests/non-switchable-system.nix
2024-09-17 10:23:40 -06:00

16 lines
276 B
Nix

{ lib, ... }:
{
name = "non-switchable-system";
meta.maintainers = with lib.maintainers; [ nikstur ];
nodes.machine = {
system.switch.enable = false;
};
testScript = ''
machine.succeed("test ! -e /run/current-system/bin/switch-to-configuration")
'';
}