system.nixos.tags

Strings to prefix to the default system.nixos.label.

Useful for not losing track of configurations built with different options, e.g.:

{
  system.nixos.tags = [ "with-xen" ];
  virtualisation.xen.enable = true;
}
Type
list of string
Default
[ ]
Example
[
  "with-xen"
]
Declared
<nixpkgs/nixos/modules/misc/label.nix>