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