Merge pull request #111461 from helsinki-systems/xen

nixos/xen: add types
This commit is contained in:
Sandro 2021-01-31 15:27:37 +01:00 committed by GitHub
commit cf17c057b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,8 @@ in
virtualisation.xen.bootParams =
mkOption {
default = "";
default = [];
type = types.listOf types.str;
description =
''
Parameters passed to the Xen hypervisor at boot time.
@ -68,6 +69,7 @@ in
mkOption {
default = 0;
example = 512;
type = types.addCheck types.int (n: n >= 0);
description =
''
Amount of memory (in MiB) allocated to Domain 0 on boot.
@ -78,6 +80,7 @@ in
virtualisation.xen.bridge = {
name = mkOption {
default = "xenbr0";
type = types.str;
description = ''
Name of bridge the Xen domUs connect to.
'';