about summary refs log tree commit diff
path: root/modules/system/iso.nix
blob: 893a56e9fb71ff7ea735a83b9f548556b53cf086 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, ... }:

{
  options.vuizvui.createISO = lib.mkOption {
    default = false;
    example = true;
    type = lib.types.bool;
    description = ''
      Whether to build an ISO image out of this machine configuration on Hydra.
    '';
  };
}