1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-17 20:07:29 +02:00
home-manager/tests/modules/programs/fastfetch/basic-configuration.nix

40 lines
799 B
Nix
Raw Normal View History

2024-05-02 02:23:11 +02:00
{
programs.fastfetch = {
enable = true;
settings = {
logo = {
source = "nixos_small";
padding = { right = 1; };
};
display = {
binaryPrefix = "si";
color = "blue";
separator = " ";
};
modules = [
{
type = "datetime";
key = "Date";
format = "{1}-{3}-{11}";
}
{
type = "datetime";
key = "Time";
format = "{14}:{17}:{20}";
}
"break"
"player"
"media"
];
};
};
test.stubs.fastfetch = { };
nmt.script = let configFile = "home-files/.config/fastfetch/config.jsonc";
in ''
assertFileExists "${configFile}"
assertFileContent "${configFile}" ${./basic-configuration.jsonc}
'';
}