Skip to content

Commit

Permalink
update nixpkgs; fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AshleyYakeley committed Dec 28, 2024
1 parent c333baa commit 6954e1e
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"label": "Format & Check",
"type": "shell",
"command": "nix fmt && nix flake check && git rev-parse HEAD && echo Done!"
"command": "nix fmt && nix flake check && git rev-parse HEAD"
}
]
}
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-24.05";
ref = "nixos-24.11";
};
};

Expand Down
48 changes: 24 additions & 24 deletions generate-xml/domain.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ let
])
(subelem "numatune" [ ] [
(subelem "memory" [ (subattr "mode" typeString) (subattr "nodeset" typeString) ] [ ])
(subelem "memnode" [ (subattr "mode" typeString) (subattr "nodeset" typeString) (subattr "cellid" typeInt) ] [ ])
(subelem "memnode" [ (subattr "mode" typeString) (subattr "nodeset" typeString) (subattr "cellid" typeInt) ] [ ])
])

(subelem "sysinfo" [ (subattr "type" typeString) ] [
Expand Down Expand Up @@ -203,12 +203,12 @@ let
(subattr "name" typeString)
] [ ])
(subelem "numa" [ ] [
(subelem "cell" [
(subattr "id" typeInt)
(subattr "cpus" typeString)
(subattr "memory" typeInt)
(subattr "unit" typeString)
] [ ])
(subelem "cell" [
(subattr "id" typeInt)
(subattr "cpus" typeString)
(subattr "memory" typeInt)
(subattr "unit" typeString)
] [ ])
])
]
)
Expand Down Expand Up @@ -393,7 +393,7 @@ let
(subelem "rom"
[
(subattr "bar" typeBoolOnOff)
(subattr "enabled" typeBoolYesNo)
(subattr "enabled" typeBoolYesNo)
(subattr "file" typePath)
] [ ]
)
Expand Down Expand Up @@ -500,30 +500,30 @@ let
(subelem "image" [ (subattr "compression" typeBoolOnOff) ] [ ])
(subelem "gl" [ (subattr "enable" typeBoolYesNo) (subattr "rendernode" typeString) ] [ ])
])
(subelem "sound" [ (subattr "model" typeString) ]
(subelem "sound" [ (subattr "model" typeString) ]
[
(subelem "codec" [ (subattr "type" typeString) ] [ ])
(subelem "audio" [ (subattr "id" typeInt) ] [ ])
addresselem
addresselem
])
(subelem "audio"
[
(subattr "id" typeInt)
(subattr "type" typeString)
(subelem "audio"
[
(subattr "id" typeInt)
(subattr "type" typeString)
(subattr "runtimeDir" typePath)
]
[
(subelem "input"
]
[
(subelem "input"
[
(subattr "name" typeString)
(subattr "streamName" typeString)
(subattr "latency" typeInt)
(subattr "name" typeString)
(subattr "streamName" typeString)
(subattr "latency" typeInt)
] [ ])
(subelem "output"
(subelem "output"
[
(subattr "name" typeString)
(subattr "streamName" typeString)
(subattr "latency" typeInt)
(subattr "name" typeString)
(subattr "streamName" typeString)
(subattr "latency" typeInt)
] [ ])
])
(subelem "video" [ ]
Expand Down

0 comments on commit 6954e1e

Please sign in to comment.