2021-11-04 16:42:44 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.bottom = {
|
|
|
|
enable = true;
|
|
|
|
package = config.lib.test.mkStubPackage { };
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
flags = {
|
|
|
|
avg_cpu = true;
|
|
|
|
temperature_type = "c";
|
|
|
|
};
|
|
|
|
|
|
|
|
colors = { low_battery_color = "red"; };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-08-08 10:19:01 +00:00
|
|
|
nmt.script = ''
|
2021-11-04 16:42:44 +00:00
|
|
|
assertFileContent \
|
2023-08-08 10:19:01 +00:00
|
|
|
"home-files/.config/bottom/bottom.toml" \
|
2023-01-10 09:35:00 +00:00
|
|
|
${./example-settings-expected.toml}
|
2021-11-04 16:42:44 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|