mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
42 lines
820 B
Nix
42 lines
820 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.bottom = {
|
||
|
enable = true;
|
||
|
package = pkgs.writeShellScriptBin "dummy" "";
|
||
|
|
||
|
settings = {
|
||
|
flags = {
|
||
|
avg_cpu = true;
|
||
|
temperature_type = "c";
|
||
|
};
|
||
|
|
||
|
colors = { low_battery_color = "red"; };
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nmt.script = let
|
||
|
configDir = if pkgs.stdenv.isDarwin then
|
||
|
"home-files/Library/Application Support"
|
||
|
else
|
||
|
"home-files/.config";
|
||
|
in ''
|
||
|
assertFileContent \
|
||
|
"${configDir}/bottom/bottom.toml" \
|
||
|
${
|
||
|
builtins.toFile "example-settings-expected.toml" ''
|
||
|
[colors]
|
||
|
low_battery_color = "red"
|
||
|
|
||
|
[flags]
|
||
|
avg_cpu = true
|
||
|
temperature_type = "c"
|
||
|
''
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|