depot/third_party/home-manager/tests/modules/programs/hyfetch/settings.nix
Default email 2eafb8192e Project import generated by Copybara.
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
2023-01-10 02:35:00 -07:00

25 lines
423 B
Nix

{ ... }:
{
programs.hyfetch = {
enable = true;
settings = {
preset = "rainbow";
mode = "rgb";
light_dark = "dark";
lightness = 0.5;
color_align = {
mode = "horizontal";
custom_colors = [ ];
fore_back = null;
};
};
};
test.stubs.hyfetch = { };
nmt.script = ''
assertFileContent home-files/.config/hyfetch.json ${./hyfetch.json}
'';
}