Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AshleyYakeley committed May 3, 2024
1 parent 051b819 commit ca0de52
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 24 deletions.
32 changes: 17 additions & 15 deletions checks/domain/template-windows-3/input.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
lib: let
lib:
let
inputArgs = {
name = "test-windows-3";
uuid = "a67f3ed6-fdad-462a-8c3b-d970db34d8da";
storage_vol = { pool = "default"; volume = "win10.qcow2"; };
install_vol = /Source/Win11_23H2_EnglishInternational_x64v2.iso;
nvram_path = /Storage/MyNVRAM.fd;
};
in lib.domain.templates.windows
in
lib.domain.templates.windows
inputArgs //
{
features = {
kvm = {
hidden.state = true;
hint-dedicated.state = false;
poll-control.state = true;
pv-ipi.state = true;
dirty-ring = {
state = true;
size = 16384;
};
{
features = {
kvm = {
hidden.state = true;
hint-dedicated.state = false;
poll-control.state = true;
pv-ipi.state = true;
dirty-ring = {
state = true;
size = 16384;
};
} // (lib.domain.templates.windows inputArgs).features;
}
};
} // (lib.domain.templates.windows inputArgs).features;
}
18 changes: 9 additions & 9 deletions generate-xml/domain.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ let
])

(subelem "sysinfo" [ (subattr "type" typeString) ] [
(subelem "bios" [] [
(subelem "bios" [ ] [
(subelem "entry" [ (subattr "name" typeString) ] (sub "value" typeString))
])
(subelem "system" [] [
(subelem "system" [ ] [
(subelem "entry" [ (subattr "name" typeString) ] (sub "value" typeString))
])
])
Expand All @@ -65,7 +65,7 @@ let
(subelem "kernel" [ ] (sub "path" typePath))
(subelem "initrd" [ ] (sub "path" typePath))
(subelem "cmdline" [ ] (sub "options" typeString))
(subelem "smbios" [ (subattr "mode" typeString) ] [])
(subelem "smbios" [ (subattr "mode" typeString) ] [ ])
]
)
(subelem "memoryBacking" [ ]
Expand Down Expand Up @@ -142,11 +142,11 @@ let
(subelem "cache" [
(subattr "level" typeInt)
(subattr "mode" typeString)
][])
] [ ])
(subelem "feature" [
(subattr "policy" typeString)
(subattr "name" typeString)
][])
] [ ])
]
)
(subelem "clock"
Expand Down Expand Up @@ -251,7 +251,7 @@ let
targetelem
(subelem "readonly" [ ] [ ])
addresselem
(subelem "boot" [ (subattr "order" typeInt) ][])
(subelem "boot" [ (subattr "order" typeInt) ] [ ])
]
)
(subelem "filesystem" [ (subattr "type" typeString) (subattr "accessmode" typeString) ]
Expand Down Expand Up @@ -290,16 +290,16 @@ let
(subattr "managed" typeBoolYesNo)
]
[
(subelem "source" [] [ addresselem ])
(subelem "boot" [ (subattr "order" typeInt) ][])
(subelem "source" [ ] [ addresselem ])
(subelem "boot" [ (subattr "order" typeInt) ] [ ])
]
)
(subelem "shmem"
[
(subattr "name" typeString)
]
[
(subelem "model" [ (subattr "type" typeString) ] [])
(subelem "model" [ (subattr "type" typeString) ] [ ])
(subelem "size" [ (subattr "unit" typeString) ] (sub "count" typeInt))
]
)
Expand Down

0 comments on commit ca0de52

Please sign in to comment.