Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

thermald: also install thermal-conf.xml into $out

Otherwise you get errors like this when running `thermald.service` from
the `services.thermald` module:

```
[WARN]22 CPUID levels; family:model:stepping 0x6:8e:a (6:142:10)
[WARN]Polling mode is enabled: 4
[WARN]sensor id 10 : No temp sysfs for reading raw temp
I/O warning : failed to load external entity "/nix/store/7d7cfc1949g7n7ywx47a0dsfz3b3rix5-thermald-1.9.1/etc/thermald/thermal-conf.xml"
[WARN]error: could not parse file /nix/store/7d7cfc1949g7n7ywx47a0dsfz3b3rix5-thermald-1.9.1/etc/thermald/thermal-conf.xml
[WARN]sysfs open failed
I/O warning : failed to load external entity "/nix/store/7d7cfc1949g7n7ywx47a0dsfz3b3rix5-thermald-1.9.1/etc/thermald/thermal-conf.xml"
[WARN]error: could not parse file /nix/store/7d7cfc1949g7n7ywx47a0dsfz3b3rix5-thermald-1.9.1/etc/thermald/thermal-conf.xml
I/O warning : failed to load external entity "/nix/store/7d7cfc1949g7n7ywx47a0dsfz3b3rix5-thermald-1.9.1/etc/thermald/thermal-conf.xml"
[WARN]error: could not parse file /nix/store/7d7cfc1949g7n7ywx47a0dsfz3b3rix5-thermald-1.9.1/etc/thermald/thermal-conf.xml
```

(cherry picked from commit 9fc8856b25e1ea2a89a6a5cc46a1128cb5348a51)

+5 -1
+5 -1
pkgs/tools/system/thermald/default.nix
··· 27 27 "--localstatedir=/var" 28 28 "--with-dbus-sys-dir=${placeholder "out"}/share/dbus-1/system.d" 29 29 "--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system" 30 - ]; 30 + ]; 31 + 32 + postInstall = '' 33 + cp ./data/thermal-conf.xml $out/etc/thermald/ 34 + ''; 31 35 32 36 meta = with stdenv.lib; { 33 37 description = "Thermal Daemon";