notes: 2.3.0 -> 2.3.1 (#352950)
[NixPkgs.git] / nixos / tests / non-switchable-system.nix
blob54bede75453ba5f95055871e8bec9572b37d6601
1 { lib, ... }:
4   name = "non-switchable-system";
6   meta.maintainers = with lib.maintainers; [ nikstur ];
8   nodes.machine = {
9     system.switch.enable = false;
10   };
12   testScript = ''
13     machine.succeed("test ! -e /run/current-system/bin/switch-to-configuration")
14   '';