depot/third_party/home-manager/tests/modules/programs/yambar/example-settings.nix
Default email 4d19ca4703 Project import generated by Copybara.
GitOrigin-RevId: a7117efb3725e6197dd95424136f79147aa35e5b
2024-06-04 11:23:39 -07:00

35 lines
711 B
Nix

{ config, ... }:
{
programs.yambar = {
enable = true;
package = config.lib.test.mkStubPackage { };
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}'
''
}
'';
}