1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 03:48:31 +02:00
home-manager/tests/modules/programs/btop/example-settings.nix

35 lines
583 B
Nix
Raw Normal View History

2022-08-17 18:16:01 +02:00
{ config, ... }:
{
programs.btop = {
enable = true;
package = config.lib.test.mkStubPackage { };
settings = {
# Integer
update_ms = 1000;
# Boolean
show_io_stat = false;
io_graph_combined = true;
# String
disks_filter = "exclude=/foo/bar";
log_level = "DEBUG";
# Empty string
io_graph_speeds = "";
};
extraConfig = ''
clock_format = "%H:%M"
'';
};
nmt.script = ''
assertFileContent \
home-files/.config/btop/btop.conf \
${./example-settings-expected.conf}
'';
}