mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
26 lines
423 B
Nix
26 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}
|
||
|
'';
|
||
|
}
|