1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-09 18:26:54 +00:00
home-manager/tests/modules/programs/yambar/example-settings.nix

32 lines
643 B
Nix
Raw Normal View History

2022-10-25 21:31:46 +09:00
{
programs.yambar = {
enable = true;
settings = {
bar = {
location = "top";
height = 26;
background = "00000066";
right = [{ clock.content = [{ string.text = "{time}"; }]; }];
};
};
};
nmt.script = ''
assertFileContent \
home-files/.config/yambar/config.yml \
${
builtins.toFile "yambar-expected.yml" ''
bar:
background: '00000066'
height: 26
location: top
right:
- clock:
content:
- string:
text: '{time}'
''
}
'';
}