2021-09-13 01:09:31 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.bottom = {
|
|
|
|
enable = true;
|
2021-09-26 09:08:45 +00:00
|
|
|
package = config.lib.test.mkStubPackage { };
|
2021-09-13 01:09:31 +00:00
|
|
|
|
|
|
|
settings = {
|
|
|
|
flags = {
|
|
|
|
avg_cpu = true;
|
|
|
|
temperature_type = "c";
|
|
|
|
};
|
|
|
|
|
|
|
|
colors = { low_battery_color = "red"; };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-04-14 09:36:38 +00:00
|
|
|
nmt.script = ''
|
2021-09-13 01:09:31 +00:00
|
|
|
assertFileContent \
|
2023-04-14 09:36:38 +00:00
|
|
|
"home-files/.config/bottom/bottom.toml" \
|
2022-01-02 03:28:45 +00:00
|
|
|
${./example-settings-expected.toml}
|
2021-09-13 01:09:31 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|