···197197198198 with subtest("have the terminal display a colour"):
199199 # We run this command in the background
200200+ assert machine.shell is not None
200201 machine.shell.send(b"(run-in-this-term display-colour |& systemd-cat -t terminal) &\n")
201202202203 with machine.nested("Waiting for the screen to have pink on it:"):
···11+diff --git a/jellyfin.ruleset b/jellyfin.ruleset
22+index 1c834de82..e8f091f71 100644
33+--- a/jellyfin.ruleset
44++++ b/jellyfin.ruleset
55+@@ -54,6 +54,29 @@
66+ <Rule Id="SA1602" Action="None" />
77+ <!-- disable warning SA1633: The file header is missing or not located at the top of the file -->
88+ <Rule Id="SA1633" Action="None" />
99++
1010++ <!-- disable warning SA1028: Code should not contain trailing whitespace -->
1111++ <Rule Id="SA1028" Action="None" />
1212++ <!-- disable warning SA1507: Code should not contain multiple blank lines in a row -->
1313++ <Rule Id="SA1507" Action="None" />
1414++ <!-- disable warning SA1642: Constructor summary documentation should begin with standard text -->
1515++ <Rule Id="SA1642" Action="None" />
1616++ <!-- disable warning SA1505: An opening brace should not be followed by a blank line -->
1717++ <Rule Id="SA1505" Action="None" />
1818++ <!-- disable warning SA1508: A closing brace should not be preceded by a blank line -->
1919++ <Rule Id="SA1508" Action="None" />
2020++ <!-- disable warning SA1513: Closing brace should be followed by blank line -->
2121++ <Rule Id="SA1513" Action="None" />
2222++ <!-- disable warning SA1111: Closing parenthesis should be on line of last parameter -->
2323++ <Rule Id="SA1111" Action="None" />
2424++ <!-- disable warning SA1649: File name should match first type name -->
2525++ <Rule Id="SA1649" Action="None" />
2626++ <!-- disable warning SA1137: Elements should have the same indentation -->
2727++ <Rule Id="SA1137" Action="None" />
2828++ <!-- disable warning SA1005: Single line comment should begin with a space -->
2929++ <Rule Id="SA1005" Action="None" />
3030++ <!-- disable warning SA1208: Using directive for 'System.Text' should appear before directive for '...' -->
3131++ <Rule Id="SA1208" Action="None" />
3232+ </Rules>
3333+3434+ <Rules AnalyzerId="Microsoft.CodeAnalysis.NetAnalyzers" RuleNamespace="Microsoft.Design">
+1-1
pkgs/servers/jellyfin/node-composition.nix
···11-# This file has been generated by node2nix 1.9.0. Do not edit!
11+# This file has been generated by node2nix 1.11.1. Do not edit!
2233{pkgs ? import <nixpkgs> {
44 inherit system;