1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 04:43:28 +02:00
home-manager/tests/modules/programs/hyfetch/settings.nix

26 lines
423 B
Nix
Raw Normal View History

2022-08-01 17:03:41 +02:00
{ ... }:
{
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}
'';
}