···11+# Non Switchable Systems {#sec-non-switchable-system}
22+33+In certain systems, most notably image based appliances, updates are handled
44+outside the system. This means that you do not need to rebuild your
55+configuration on the system itself anymore.
66+77+If you want to build such a system, you can use the `image-based-appliance`
88+profile:
99+1010+```nix
1111+{ modulesPath, ... }: {
1212+ imports = [ "${modulesPath}/profiles/image-based-appliance.nix" ]
1313+}
1414+```
1515+1616+The most notable deviation of this profile from a standard NixOS configuration
1717+is that after building it, you cannot switch *to* the configuration anymore.
1818+The profile sets `config.system.switch.enable = false;`, which excludes
1919+`switch-to-configuration`, the central script called by `nixos-rebuild`, from
2020+your system. Removing this script makes the image lighter and slightly more
2121+secure.